/* =============================================================
   TAGLIA POWER PERFORMANCE — theme.css (site-wide)
   Reset + design tokens + header + mobile menu + footer + keyframes.
   100% sem Elementor. Tema hand-coded.
   ============================================================= */

/* ---------- reset moderno ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{ margin:0; background:#0a0a0a; color:#fff; font-family:'Be Vietnam Pro',system-ui,sans-serif; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; line-height:1.5; }
h1,h2,h3,h4,p,figure,ul,ol{ margin:0; }
ul,ol{ padding:0; list-style:none; }
h1,h2,h3{ letter-spacing:-.018em; }
img,svg,video{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:inherit; text-decoration:none; transition:color .25s ease, opacity .25s ease; }
button{ font:inherit; color:inherit; }
:focus-visible{ outline:2px solid #ebb71d; outline-offset:3px; }
.tg-skip{ position:absolute; left:-9999px; top:0; z-index:100001; background:#ebb71d; color:#0a0a0a; padding:12px 18px; border-radius:0 0 8px 0; font-weight:600; }
.tg-skip:focus{ left:0; }

/* =============================================================
   TAGLIA · Header + Hero customizados (dobra 1 — premium)
   Substitui o header/hero do Elementor. Resto da página intacto.
   ============================================================= */

:root{
  --tg-amber:#ebb71d;
  --tg-amber-2:#ffd34d;
  --tg-ink:#0a0a0a;
  --tg-ink-2:#0e0e0e;
  --tg-white:#ffffff;
  --tg-mist:#c9c9c9;
  --tg-dim:#8a8a8a;
  --tg-line:rgba(255,255,255,.10);
  --tg-display:'Archivo','Be Vietnam Pro',sans-serif;
  --tg-sans:'Be Vietnam Pro',system-ui,sans-serif;
  --tg-ease:cubic-bezier(.22,1,.36,1);
  --tg-gutter:clamp(20px,4.5vw,68px);
}

/* ---- esconder header / hero / whatsapp originais ---- */

/* ============================================================
   HEADER
   ============================================================ */
.tg-header{
  position:fixed; top:0; left:0; right:0; z-index:9990;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:22px var(--tg-gutter);
  transition:padding .45s var(--tg-ease), background-color .45s var(--tg-ease), border-color .45s var(--tg-ease), backdrop-filter .45s var(--tg-ease);
  border-bottom:1px solid transparent;
}
.tg-header.is-stuck{
  padding-block:13px;
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(16px) saturate(1.2);
  -webkit-backdrop-filter:blur(16px) saturate(1.2);
  border-bottom-color:var(--tg-line);
}

.tg-brand{ display:flex; align-items:center; flex:none; opacity:0; animation:tgFade .8s var(--tg-ease) .1s forwards; }
.tg-brand img{ height:50px; width:auto; transition:height .45s var(--tg-ease); display:block; }
.tg-header.is-stuck .tg-brand img{ height:42px; }

/* ---- nav ---- */
.tg-nav{ display:flex; align-items:center; gap:6px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
.tg-nav__items{ display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0; }
.tg-nav__item{ position:relative; list-style:none; }
.tg-nav__link{
  position:relative; display:inline-flex; align-items:center; gap:7px;
  font-family:var(--tg-sans); font-size:15px; font-weight:500; color:#dcdcdc;
  padding:10px 16px; border-radius:9px; cursor:pointer;
  transition:color .3s var(--tg-ease), background-color .3s var(--tg-ease);
}
.tg-nav__link .tg-chev{ width:13px; height:13px; transition:transform .35s var(--tg-ease); opacity:.8; }
.tg-nav__link:hover{ color:#fff; background:rgba(255,255,255,.05); }
.tg-nav__link::after{
  content:""; position:absolute; left:16px; right:16px; bottom:5px; height:2px;
  background:var(--tg-amber); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .38s var(--tg-ease);
}
.tg-nav__link:hover::after{ transform:scaleX(1); }
/* stagger nav entrance */
.tg-nav__item{ opacity:0; animation:tgFadeDown .7s var(--tg-ease) forwards; }
.tg-nav__item:nth-child(1){ animation-delay:.18s; }
.tg-nav__item:nth-child(2){ animation-delay:.25s; }
.tg-nav__item:nth-child(3){ animation-delay:.32s; }
.tg-nav__item:nth-child(4){ animation-delay:.39s; }
.tg-nav__item:nth-child(5){ animation-delay:.46s; }

/* ---- dropdown ---- */
.tg-has-drop:hover .tg-nav__link .tg-chev{ transform:rotate(180deg); }
.tg-drop{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(10px);
  min-width:258px; padding:10px; border-radius:16px;
  background:rgba(16,16,16,.96); backdrop-filter:blur(20px);
  border:1px solid var(--tg-line); box-shadow:0 30px 60px rgba(0,0,0,.55);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .32s var(--tg-ease), transform .32s var(--tg-ease), visibility .32s;
}
.tg-drop::before{ content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.tg-has-drop:hover .tg-drop{ opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.tg-drop__item{
  display:block; padding:12px 16px; border-radius:10px;
  transition:background-color .25s var(--tg-ease), transform .25s var(--tg-ease);
}
.tg-drop__item:hover{ background:rgba(235,183,29,.10); transform:translateX(3px); }
.tg-drop__tt{
  display:block; font-family:var(--tg-sans); font-size:15px; font-weight:500;
  color:#d7d7d7; line-height:1.35; transition:color .25s var(--tg-ease);
}
.tg-drop__item:hover .tg-drop__tt{ color:#fff; }

/* ---- right cluster: lang + cta ---- */
.tg-header__right{ display:flex; align-items:center; gap:22px; flex:none; opacity:0; animation:tgFadeDown .7s var(--tg-ease) .5s forwards; }
.tg-lang{ display:flex; align-items:center; gap:9px; font-family:var(--tg-sans); font-size:13px; font-weight:600; letter-spacing:.04em; }
.tg-lang a{ color:var(--tg-dim); transition:color .25s; }
.tg-lang a:hover{ color:#fff; }
.tg-lang a.is-active{ color:var(--tg-amber); }
.tg-lang span{ color:#3a3a3a; }
.tg-cta{
  display:inline-flex; align-items:center; gap:10px; white-space:nowrap;
  font-family:var(--tg-sans); font-size:14.5px; font-weight:600; color:var(--tg-ink);
  background:var(--tg-amber); padding:13px 22px; border-radius:10px;
  transition:transform .35s var(--tg-ease), box-shadow .35s var(--tg-ease), background-color .35s;
}
.tg-cta svg{ width:16px; height:16px; transition:transform .35s var(--tg-ease); }
.tg-cta:hover{ background:var(--tg-amber-2); transform:translateY(-2px); box-shadow:0 12px 26px rgba(235,183,29,.28); }
.tg-cta:hover svg{ transform:translateX(4px); }

/* ---- hamburger ---- */
.tg-burger{ display:none; width:44px; height:44px; border:none; background:transparent; cursor:pointer; position:relative; flex:none; z-index:10001; }
.tg-burger span{ position:absolute; left:10px; right:10px; height:2px; background:#fff; border-radius:2px; transition:transform .4s var(--tg-ease), opacity .3s var(--tg-ease), top .4s var(--tg-ease); }
.tg-burger span:nth-child(1){ top:15px; }
.tg-burger span:nth-child(2){ top:21px; }
.tg-burger span:nth-child(3){ top:27px; }
body.tg-menu-open .tg-burger span:nth-child(1){ top:21px; transform:rotate(45deg); }
body.tg-menu-open .tg-burger span:nth-child(2){ opacity:0; }
body.tg-menu-open .tg-burger span:nth-child(3){ top:21px; transform:rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.tg-hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  overflow:hidden; background:var(--tg-ink); padding:140px var(--tg-gutter) 96px;
}
.tg-hero__bg{ position:absolute; inset:0; z-index:0; }
.tg-hero__bg img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center;
  opacity:0; animation:tgHeroImg 1.4s var(--tg-ease) .2s forwards;
}
.tg-hero__glow{
  position:absolute; z-index:0; right:14%; top:48%; width:540px; height:540px; transform:translateY(-50%);
  background:radial-gradient(circle, rgba(235,183,29,.20), transparent 62%); filter:blur(26px);
  opacity:0; animation:tgFade 1.6s var(--tg-ease) .6s forwards;
}
.tg-hero__grid{
  position:absolute; inset:0; z-index:0; opacity:.16;
  background-image:linear-gradient(var(--tg-line) 1px,transparent 1px),linear-gradient(90deg,var(--tg-line) 1px,transparent 1px);
  background-size:62px 62px;
  -webkit-mask-image:radial-gradient(ellipse 75% 70% at 28% 46%,#000 25%,transparent 72%);
  mask-image:radial-gradient(ellipse 75% 70% at 28% 46%,#000 25%,transparent 72%);
}
.tg-hero__bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(95deg,var(--tg-ink) 14%,rgba(10,10,10,.72) 46%,rgba(10,10,10,.12) 72%,rgba(10,10,10,.5));
}
/* grão */
.tg-hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.tg-hero__inner{ position:relative; z-index:2; width:100%; max-width:1320px; margin:0 auto; }
.tg-hero__content{ max-width:720px; }

.tg-hero__eyebrow{
  display:inline-flex; align-items:center; gap:14px;
  font-family:var(--tg-sans); font-size:13.5px; font-weight:600; letter-spacing:.32em; text-transform:uppercase; color:#d6d6d6;
  opacity:0; animation:tgFadeUp .8s var(--tg-ease) .35s forwards;
}
.tg-hero__eyebrow::before{
  content:""; width:34px; height:2px; background:var(--tg-amber); transform-origin:left;
  transform:scaleX(0); animation:tgLine .7s var(--tg-ease) .5s forwards;
}
.tg-hero__title{
  font-family:var(--tg-display) !important; font-weight:600; color:#fff !important;
  font-size:clamp(40px,5.3vw,72px); line-height:1.04; letter-spacing:-.015em; margin-top:26px;
}
.tg-hero__title .ln > span{ color:#fff !important; }
.tg-hero__title .ln{ display:block; overflow:hidden; }
.tg-hero__title .ln > span{ display:block; transform:translateY(115%); }
.tg-hero__title .ln:nth-child(1) > span{ animation:tgRise .95s var(--tg-ease) .5s forwards; }
.tg-hero__title .ln:nth-child(2) > span{ animation:tgRise .95s var(--tg-ease) .62s forwards; }
.tg-hero__title .ln:nth-child(3) > span{ animation:tgRise .95s var(--tg-ease) .74s forwards; }
.tg-hero__title em{ font-style:normal; color:var(--tg-amber); }

.tg-hero__actions{ margin-top:42px; display:flex; align-items:center; gap:22px; flex-wrap:wrap; opacity:0; animation:tgFadeUp .9s var(--tg-ease) .95s forwards; }
.tg-hero__btn{
  display:inline-flex; align-items:center; gap:11px;
  font-family:var(--tg-sans); font-size:15.5px; font-weight:600; color:var(--tg-ink);
  background:var(--tg-white); padding:17px 30px; border-radius:11px;
  transition:transform .35s var(--tg-ease), box-shadow .35s var(--tg-ease), background-color .35s;
}
.tg-hero__btn svg{ width:17px; height:17px; transition:transform .35s var(--tg-ease); }
.tg-hero__btn:hover{ background:var(--tg-amber); transform:translateY(-3px); box-shadow:0 16px 34px rgba(0,0,0,.35); }
.tg-hero__btn:hover svg{ transform:translateX(4px); }
.tg-hero__ghost{
  display:inline-flex; align-items:center; gap:10px; font-family:var(--tg-sans); font-size:15px; font-weight:500; color:#e2e2e2;
  transition:color .3s var(--tg-ease), gap .3s var(--tg-ease);
}
.tg-hero__ghost svg{ width:16px; height:16px; color:var(--tg-amber); }
.tg-hero__ghost:hover{ color:#fff; gap:14px; }

/* painel de credenciais (vidro) */
.tg-hero__panel{
  margin-top:62px; display:inline-flex; align-items:stretch; gap:0;
  border:1px solid var(--tg-line); border-radius:16px; overflow:hidden;
  background:rgba(255,255,255,.035); backdrop-filter:blur(10px);
  opacity:0; animation:tgFadeUp 1s var(--tg-ease) 1.15s forwards;
}
.tg-hero__stat{ padding:20px 30px; border-left:1px solid var(--tg-line); }
.tg-hero__stat:first-child{ border-left:none; }
.tg-hero__stat b{ display:block; font-family:var(--tg-display); font-weight:600; font-size:28px; color:#fff; line-height:1; letter-spacing:-.01em; }
.tg-hero__stat b i{ color:var(--tg-amber); font-style:normal; }
/* stats em texto (sem número grande, sem âmbar) */
.tg-hero__stat--txt b{ font-size:18px; font-weight:600; letter-spacing:-.005em; white-space:nowrap; }
.tg-hero__stat span{ display:block; margin-top:7px; font-family:var(--tg-sans); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--tg-dim); }

/* scroll cue */
.tg-hero__scroll{
  position:absolute; left:var(--tg-gutter); bottom:30px; z-index:2;
  display:flex; align-items:center; gap:13px;
  font-family:var(--tg-sans); font-size:11.5px; letter-spacing:.22em; text-transform:uppercase; color:var(--tg-dim);
  opacity:0; animation:tgFade 1s var(--tg-ease) 1.4s forwards;
}
.tg-hero__scroll i{ display:block; width:1px; height:38px; background:linear-gradient(var(--tg-amber),transparent); animation:tgScroll 1.9s ease-in-out infinite; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.tg-mobile{
  position:fixed; inset:0; z-index:10000; background:rgba(8,8,8,.99); backdrop-filter:blur(18px);
  display:flex; flex-direction:column; padding:108px var(--tg-gutter) 44px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .45s var(--tg-ease), transform .45s var(--tg-ease), visibility .45s;
}
body.tg-menu-open .tg-mobile{ opacity:1; visibility:visible; transform:none; }

/* topo do painel: logo + fechar */
.tg-mobile__top{
  position:absolute; top:26px; left:var(--tg-gutter); right:var(--tg-gutter);
  display:flex; align-items:center; justify-content:space-between;
}
.tg-mobile__top img{ height:40px; width:auto; display:block; }
.tg-mobile__close{
  width:48px; height:48px; flex:none;
  border-radius:50% !important; border:1px solid var(--tg-line) !important;
  background:rgba(255,255,255,.05) !important; color:#fff !important;
  display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0;
  transition:background-color .3s var(--tg-ease), border-color .3s var(--tg-ease), color .3s var(--tg-ease), transform .4s var(--tg-ease);
}
.tg-mobile__close svg{ width:20px; height:20px; }
.tg-mobile__close:hover{ background:var(--tg-amber) !important; border-color:var(--tg-amber) !important; color:var(--tg-ink) !important; transform:rotate(90deg); }

.tg-mobile__link{
  font-family:var(--tg-display); font-weight:500; font-size:28px; color:#fff; padding:18px 0;
  border-bottom:1px solid var(--tg-line); display:flex; justify-content:space-between; align-items:center;
  opacity:0; transform:translateY(14px);
  transition:color .25s var(--tg-ease), padding-left .25s var(--tg-ease);
}
.tg-mobile__link:visited{ color:#fff; }
.tg-mobile__link:hover, .tg-mobile__link:active{ color:var(--tg-amber); padding-left:8px; }
.tg-mobile__link:hover span, .tg-mobile__link:active span{ color:var(--tg-amber); }
body.tg-menu-open .tg-mobile__link{ animation:tgFadeUp .6s var(--tg-ease) forwards; }
body.tg-menu-open .tg-mobile__link:nth-child(1){ animation-delay:.12s; }
body.tg-menu-open .tg-mobile__link:nth-child(2){ animation-delay:.18s; }
body.tg-menu-open .tg-mobile__link:nth-child(3){ animation-delay:.24s; }
body.tg-menu-open .tg-mobile__link:nth-child(4){ animation-delay:.30s; }
body.tg-menu-open .tg-mobile__link:nth-child(5){ animation-delay:.36s; }
.tg-mobile__link span{ color:var(--tg-amber); font-size:18px; }
.tg-mobile__foot{ margin-top:auto; display:flex; flex-direction:column; gap:24px; opacity:0; }
body.tg-menu-open .tg-mobile__foot{ animation:tgFadeUp .6s var(--tg-ease) .44s forwards; }
.tg-mobile__lang{ display:flex; gap:10px; font-family:var(--tg-sans); font-weight:600; font-size:15px; }
.tg-mobile__lang a{ color:var(--tg-dim); } .tg-mobile__lang a.is-active{ color:var(--tg-amber); } .tg-mobile__lang span{ color:#3a3a3a; }
.tg-mobile__cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--tg-sans); font-weight:600; font-size:16px; color:var(--tg-ink);
  background:var(--tg-amber); padding:18px; border-radius:12px;
}
.tg-mobile__cta svg{ width:18px; height:18px; flex:none; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes tgFade{ to{ opacity:1; } }
@keyframes tgFadeUp{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:none; } }
@keyframes tgFadeDown{ from{ opacity:0; transform:translateY(-14px); } to{ opacity:1; transform:none; } }
@keyframes tgRise{ to{ transform:translateY(0); } }
@keyframes tgLine{ to{ transform:scaleX(1); } }
@keyframes tgHeroImg{ from{ opacity:0; transform:scale(1.08); } to{ opacity:.95; transform:scale(1); } }
@keyframes tgScroll{ 0%,100%{ opacity:.35; transform:scaleY(.6); } 50%{ opacity:1; transform:scaleY(1); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .tg-hero__bg img{ object-position:72% center; opacity:.62 !important; }
}
@media (max-width:880px){
  .tg-nav, .tg-header__right{ display:none; }
  .tg-burger{ display:block; }
  .tg-hero__bg img{ object-position:68% center; opacity:.4 !important; }
  .tg-hero__bg::after{ background:linear-gradient(180deg,rgba(10,10,10,.55),rgba(10,10,10,.94)); }
  .tg-hero__scroll{ display:none; }
  /* painel de credenciais bem mais compacto/sutil no mobile */
  .tg-hero__panel{ width:auto; align-self:flex-start; margin-top:38px; border-radius:12px; }
  .tg-hero__stat{ padding:11px 16px; }
  .tg-hero__stat b{ font-size:15px; }
  .tg-hero__stat--txt b{ font-size:13px; }
  .tg-hero__stat span{ font-size:9.5px; letter-spacing:.08em; margin-top:3px; }
}
@media (max-width:520px){
  .tg-hero__actions{ gap:16px; }
}
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001s !important; }
}

/* =============================================================
   TAGLIA · Rodapé reconstruído (sem Elementor)
   Mantém o conceito original. Tipografia refinada e proporcional.
   ============================================================= */

.tg-foot{
  background:#0a0a0a; color:#fff;
  font-family:'Be Vietnam Pro',sans-serif;
  position:relative;
}
.tg-foot__wrap{
  max-width:1280px; margin:0 auto;
  padding-inline:var(--tg-gutter, clamp(20px,4.5vw,68px));
}

/* ---------- faixa superior (CTA) ---------- */
.tg-foot__top{ padding-block:clamp(54px,6vw,86px) 0; }
.tg-foot__eyebrow{
  display:block; font-size:13px; font-weight:600; letter-spacing:.24em;
  text-transform:uppercase; color:#8f8f95;
}
.tg-foot__ctarow{
  display:flex; align-items:center; justify-content:space-between;
  gap:clamp(24px,4vw,56px); margin-top:clamp(16px,1.8vw,22px); flex-wrap:wrap;
}
.tg-foot__ctatitle{
  margin:0 !important; font-weight:700 !important; color:#fff !important;
  font-size:clamp(26px,3.4vw,42px) !important; line-height:1.08 !important; letter-spacing:-.022em !important;
}
.tg-foot__ctabtn{
  flex:none; display:inline-flex; align-items:center; gap:11px;
  font-size:15px; font-weight:600; color:#0b0b0d; background:#fff;
  padding:15px 27px; border-radius:11px;
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background-color .3s ease;
}
.tg-foot__ctabtn svg{ width:17px; height:17px; transition:transform .35s cubic-bezier(.22,1,.36,1); }
.tg-foot__ctabtn:hover{ background:#ebb71d; transform:translateY(-3px); box-shadow:0 16px 32px -12px rgba(235,183,29,.5); }
.tg-foot__ctabtn:hover svg{ transform:translateX(4px); }

.tg-foot__rule{
  height:1px; background:rgba(255,255,255,.1);
  margin-top:clamp(40px,4.4vw,60px);
}

/* ---------- miolo ---------- */
.tg-foot__main{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.25fr;
  gap:clamp(28px,3vw,52px);
  padding-block:clamp(52px,6vw,78px);
}
.tg-foot__brand-logo{ width:152px; height:auto; display:block; opacity:.95; }
.tg-foot__desc{
  margin:clamp(22px,2.4vw,28px) 0 0; max-width:310px;
  font-size:14px; line-height:1.72; color:#9a9a9f;
}
.tg-foot__social{ display:flex; gap:11px; margin-top:clamp(24px,2.6vw,30px); }
.tg-foot__social a{
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  color:#cfcfcf;
  transition:background-color .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.tg-foot__social a svg{ width:17px; height:17px; }
.tg-foot__social a:hover{
  background:#ebb71d; border-color:#ebb71d; color:#0b0b0d; transform:translateY(-3px);
}

/* colunas */
.tg-foot__col-title{
  margin:0 0 clamp(18px,1.8vw,24px) !important; font-size:16px !important; font-weight:600 !important;
  letter-spacing:.12em !important; text-transform:uppercase; color:#fff !important;
}
.tg-foot__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:13px; }
.tg-foot__list a{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14.5px; color:#a7a7ac; line-height:1.3;
  transition:color .25s ease, gap .25s ease;
}
.tg-foot__list a::before{
  content:""; width:0; height:1px; background:#ebb71d;
  transition:width .28s cubic-bezier(.22,1,.36,1);
}
.tg-foot__list a:hover{ color:#fff; gap:11px; }
.tg-foot__list a:hover::before{ width:12px; }

/* contatos */
.tg-foot__contact{ display:flex; flex-direction:column; gap:14px; }
.tg-foot__contact a, .tg-foot__contact span{
  font-size:14.5px; line-height:1.55; color:#bdbdc2;
  transition:color .25s ease;
}
.tg-foot__contact a:hover{ color:#ebb71d; }
.tg-foot__contact b{ color:#7d7d83; font-weight:500; }

/* ---------- barra inferior ---------- */
.tg-foot__bar{
  border-top:1px solid rgba(255,255,255,.08);
}
.tg-foot__bar-in{
  max-width:1280px; margin:0 auto;
  padding:clamp(18px,2vw,24px) var(--tg-gutter, clamp(20px,4.5vw,68px));
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.tg-foot__copy{ font-size:13px; color:#7c7c82; }
.tg-foot__by{ font-size:13px; color:#7c7c82; }
.tg-foot__by a{ color:#cfcfcf; font-weight:600; transition:color .25s ease; }
.tg-foot__by a:hover{ color:#ebb71d; }

/* ---------- responsivo ---------- */
@media (max-width:900px){
  .tg-foot__main{ grid-template-columns:1fr 1fr; gap:40px 32px; }
  .tg-foot__brand{ grid-column:1 / -1; }
}
@media (max-width:560px){
  .tg-foot__main{ grid-template-columns:1fr; }
  .tg-foot__ctarow{ align-items:flex-start; flex-direction:column; }
  .tg-foot__bar-in{ flex-direction:column; align-items:flex-start; gap:8px; }
}
