:root{
  --bg:#0c0f1c;
  --bg2:#111527;
  --bg3:#181d30;
  --card:#1a2038;
  --gold:#c9a55a;
  --gold2:#e8c87a;
  --gold-dim:rgba(201,165,90,0.15);
  --white:#f4f1eb;
  --gray:#8a91a8;
  --gray2:#6a7080;
  --border:rgba(201,165,90,0.14);
  --border2:rgba(201,165,90,0.28);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-tap-highlight-color:transparent}
body{background:var(--bg);color:var(--white);font-family:'Outfit',sans-serif;font-weight:300;overflow-x:hidden;line-height:1.5}

/* ══ FLOATING NAV ══ */
nav{
  position:fixed;top:1rem;left:1rem;right:1rem;z-index:200;
  background:rgba(12,15,28,0.88);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid var(--border2);
  border-radius:14px;
  display:flex;align-items:center;justify-content:space-between;
  padding:.75rem 1.2rem;
  transition:all .3s;
}
/* HTML Logo */
.logo-html{
  display:flex;align-items:center;gap:.5rem;text-decoration:none;
}
.logo-mark{
  width:38px;height:38px;
  background:var(--gold);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;font-weight:600;
  color:#0c0f1c;
  letter-spacing:-.02em;
  flex-shrink:0;
}
.logo-text{display:flex;flex-direction:column;line-height:1}
.logo-name{font-family:'Cormorant Garamond',serif;font-size:.95rem;font-weight:600;color:var(--white);letter-spacing:.04em}
.logo-sub{font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);font-weight:400}
.nav-links{display:flex;align-items:center;gap:1.5rem}
.nav-links a{color:var(--gray);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;transition:color .2s}
.nav-links a:hover{color:var(--gold)}
.nav-wa{
  background:var(--gold);color:#0c0f1c;
  padding:.5rem 1.1rem;border-radius:8px;
  font-size:.78rem;font-weight:600;letter-spacing:.05em;
  text-decoration:none;white-space:nowrap;
  transition:background .2s,transform .2s;
  display:flex;align-items:center;gap:.4rem;
}
.nav-wa:hover{background:var(--gold2);transform:translateY(-1px)}
@media(max-width:768px){.nav-links{display:none}.nav-wa-icon{display:flex!important}}

/* ══ HERO ══ */
#hero{
  min-height:100svh;
  display:flex;flex-direction:column;justify-content:center;
  padding:calc(80px + 2rem) 1.25rem 2.5rem;
  position:relative;overflow:hidden;
  text-align:center;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 110%,rgba(201,165,90,.12) 0%,transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%,rgba(201,165,90,.05) 0%,transparent 50%),
    var(--bg);
}
.hero-grid-lines{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(201,165,90,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,165,90,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-content{position:relative;z-index:2;max-width:640px;margin:0 auto}

/* keyword badges */
.kw-strip{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;
  margin-bottom:1.6rem;
}
.kw-badge{
  background:var(--gold-dim);
  border:1px solid var(--border2);
  color:var(--gold);
  font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;
  padding:.35rem .75rem;border-radius:100px;font-weight:500;
}

h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,8vw,4.2rem);
  font-weight:300;line-height:1.08;
  color:var(--white);margin-bottom:1.2rem;
}
h1 em{color:var(--gold);font-style:italic}
h1 strong{font-weight:600}

.hero-desc{
  color:var(--gray);font-size:.97rem;line-height:1.8;
  max-width:500px;margin:0 auto 2rem;
}
.hero-desc strong{color:var(--white);font-weight:500}

.hero-cta-group{display:flex;flex-direction:column;gap:.85rem;align-items:center;margin-bottom:2.5rem}
.btn-wa{
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;padding:1rem 2rem;
  border-radius:12px;font-size:1rem;font-weight:600;
  letter-spacing:.02em;text-decoration:none;
  display:inline-flex;align-items:center;gap:.6rem;
  box-shadow:0 8px 32px rgba(37,211,102,.3);
  transition:all .25s;width:100%;max-width:340px;justify-content:center;
}
.btn-wa:hover{transform:translateY(-2px);box-shadow:0 12px 40px rgba(37,211,102,.4)}
.btn-wa svg{flex-shrink:0}
.btn-secondary{
  border:1px solid var(--border2);color:var(--gold);
  padding:.85rem 2rem;border-radius:12px;
  font-size:.9rem;font-weight:400;letter-spacing:.05em;
  text-decoration:none;transition:all .25s;
  display:inline-flex;align-items:center;gap:.5rem;
  width:100%;max-width:340px;justify-content:center;
}
.btn-secondary:hover{background:var(--gold-dim);border-color:var(--gold)}

.hero-trust{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;
  padding-top:2rem;border-top:1px solid var(--border);
}
.trust-item{
  display:flex;align-items:center;gap:.5rem;
  font-size:.78rem;color:var(--gray);
}
.trust-dot{
  width:28px;height:28px;
  background:var(--gold-dim);border:1px solid var(--border2);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:.75rem;
}

/* ══ SECTION BASE ══ */
section{padding:4.5rem 1.25rem}
@media(min-width:768px){section{padding:6rem 3rem}}
@media(min-width:1100px){section{padding:7rem 5rem}}

.sec-label{
  display:inline-flex;align-items:center;gap:.6rem;
  color:var(--gold);font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;font-weight:500;
  margin-bottom:1rem;
}
.sec-label::before{content:'';display:block;width:1.8rem;height:2px;background:var(--gold)}
h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.9rem,5vw,3rem);font-weight:300;
  line-height:1.1;margin-bottom:1.2rem;color:var(--white);
}
h2 em{color:var(--gold);font-style:italic}

/* ══ URGÊNCIA STRIP ══ */
.urgency-strip{
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  color:#0c0f1c;
  padding:.9rem 1.25rem;
  text-align:center;
  font-size:.85rem;font-weight:600;letter-spacing:.03em;
}
.urgency-strip a{color:#0c0f1c;font-weight:700;text-decoration:underline}

/* ══ ÁREAS ══ */
#areas{background:var(--bg2)}
.areas-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.85rem;margin-top:2.5rem;
}
@media(min-width:768px){.areas-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1100px){.areas-grid{grid-template-columns:repeat(3,1fr)}}

.area-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.4rem 1.2rem;
  position:relative;overflow:hidden;
  cursor:default;transition:border-color .25s,transform .25s;
}
.area-card:hover{border-color:var(--border2);transform:translateY(-3px)}
.area-card::after{
  content:'';position:absolute;
  bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.area-card:hover::after{transform:scaleX(1)}
.area-emoji{font-size:1.5rem;margin-bottom:.8rem;display:block}
.area-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem;font-weight:400;color:var(--white);margin-bottom:.5rem;
}
.area-card p{color:var(--gray);font-size:.8rem;line-height:1.65}

/* ══ CAUSAS (killer section) ══ */
#causas{background:var(--bg)}
.causas-intro{color:var(--gray);font-size:.95rem;line-height:1.8;max-width:600px;margin-bottom:3rem}
.causas-intro strong{color:var(--white)}

.causas-tabs{
  display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem;
}
.tab-btn{
  background:transparent;border:1px solid var(--border);
  color:var(--gray);padding:.45rem 1rem;border-radius:100px;
  font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
  cursor:pointer;transition:all .2s;font-family:'Outfit',sans-serif;
}
.tab-btn.active,.tab-btn:hover{background:var(--gold);border-color:var(--gold);color:#0c0f1c;font-weight:600}

.causas-list{display:none;grid-template-columns:1fr;gap:.75rem}
.causas-list.active{display:grid}
@media(min-width:600px){.causas-list{grid-template-columns:1fr 1fr}}
@media(min-width:1000px){.causas-list{grid-template-columns:repeat(3,1fr)}}

.causa-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:12px;padding:1.4rem;
  display:flex;flex-direction:column;gap:.6rem;
  transition:border-color .25s,box-shadow .25s;
}
.causa-card:hover{border-color:var(--border2);box-shadow:0 4px 24px rgba(201,165,90,.1)}
.causa-tag{
  font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold);font-weight:600;
}
.causa-card h4{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-weight:400;color:var(--white);line-height:1.3;
}
.causa-card p{color:var(--gray);font-size:.8rem;line-height:1.65;flex:1}
.causa-cta{
  display:inline-flex;align-items:center;gap:.4rem;
  color:var(--gold);font-size:.75rem;font-weight:500;
  text-decoration:none;margin-top:.3rem;transition:gap .2s;
}
.causa-cta:hover{gap:.7rem}

/* ══ NÚMEROS ══ */
#numeros{
  background:var(--gold);
  padding:3.5rem 1.25rem;
  text-align:center;
}
.num-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:2.5rem;margin-bottom:2rem}
.num-item{}
.num-val{
  font-family:'Cormorant Garamond',serif;
  font-size:3.8rem;font-weight:300;color:#0c0f1c;
  display:block;line-height:1;
}
.num-label{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(12,15,28,.65);margin-top:.3rem;display:block}
.btn-dark{
  background:#0c0f1c;color:var(--gold);
  padding:.9rem 2.2rem;border-radius:10px;
  font-size:.85rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  text-decoration:none;display:inline-block;transition:all .25s;
}
.btn-dark:hover{background:#1a2038;transform:translateY(-2px)}

/* ══ EQUIPE ══ */
#equipe{background:var(--bg2)}
.team-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;margin-top:2.5rem;
}
@media(min-width:900px){.team-grid{grid-template-columns:repeat(4,1fr)}}

.team-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:12px;overflow:hidden;
  transition:border-color .3s,transform .3s;
}
.team-card:hover{border-color:var(--border2);transform:translateY(-4px)}
.team-photo-wrap{
  aspect-ratio:3/4;
  background:var(--bg3);
  overflow:hidden;
  display:flex;align-items:flex-end;justify-content:center;
}
.team-photo{
  width:90%;height:90%;
  object-fit:contain;object-position:bottom center;
  display:block;
  filter:brightness(.95) contrast(1.05);
  transition:transform .4s;
}
/* white bg photos: use luminosity trick */
.team-photo.light-bg{mix-blend-mode:multiply}
.team-card:hover .team-photo{transform:scale(1.04)}
.team-info{padding:1rem 1rem 1.2rem;border-top:1px solid var(--border)}
.team-card h3{font-family:'Cormorant Garamond',serif;font-size:.98rem;font-weight:600;color:var(--white);line-height:1.3;margin-bottom:.4rem}
.team-role{font-size:.67rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold)}

/* ══ DEPOIMENTOS ══ */
#depoimentos{background:var(--bg)}
.dep-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:2.5rem}
@media(min-width:640px){.dep-grid{grid-template-columns:repeat(3,1fr)}}
.dep-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:12px;padding:1.8rem;
  position:relative;
}
.dep-card::before{
  content:'\201C';font-family:'Cormorant Garamond',serif;
  font-size:4rem;color:var(--gold);opacity:.2;
  position:absolute;top:.3rem;left:1.2rem;line-height:1;
}
.dep-stars{color:var(--gold);font-size:.85rem;margin-bottom:.8rem}
.dep-text{font-size:.9rem;color:var(--gray);line-height:1.75;font-style:italic;margin-bottom:1.2rem;position:relative}
.dep-author{font-family:'Cormorant Garamond',serif;font-size:.95rem;color:var(--gold);font-weight:600}

/* ══ CONTATO ══ */
#contato{background:var(--bg2)}
.contato-grid{
  display:grid;grid-template-columns:1fr;
  gap:2.5rem;margin-top:2rem;
}
@media(min-width:768px){.contato-grid{grid-template-columns:1fr 1fr}}

.contato-info p{color:var(--gray);font-size:.93rem;line-height:1.8;margin-bottom:2rem}
.ci{display:flex;gap:1rem;margin-bottom:1.2rem;align-items:flex-start}
.ci-icon{
  width:40px;height:40px;flex-shrink:0;
  background:var(--gold-dim);border:1px solid var(--border2);
  border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.95rem;
}
.ci-label{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--gray2);margin-bottom:.2rem}
.ci-val{font-size:.9rem;color:var(--white);line-height:1.5}
.ci-val a{color:var(--white);text-decoration:none;transition:color .2s}
.ci-val a:hover{color:var(--gold)}

.form-box{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:2rem;border-top:3px solid var(--gold)}
.form-row{margin-bottom:1rem}
.form-row label{display:block;font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gray2);margin-bottom:.4rem}
.form-row input,.form-row textarea,.form-row select{
  width:100%;background:var(--bg);border:1px solid rgba(255,255,255,.08);
  color:var(--white);padding:.8rem 1rem;border-radius:8px;
  font-family:'Outfit',sans-serif;font-size:.9rem;outline:none;
  transition:border-color .2s;
}
.form-row input:focus,.form-row textarea:focus,.form-row select:focus{border-color:var(--gold)}
.form-row input::placeholder,.form-row textarea::placeholder{color:var(--gray2);opacity:.6}
.form-row select option{background:var(--bg2);color:var(--white)}
.form-row textarea{min-height:100px;resize:vertical}
.form-submit{
  width:100%;background:var(--gold);color:#0c0f1c;
  border:none;padding:.95rem;border-radius:10px;
  font-family:'Outfit',sans-serif;font-size:.9rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;cursor:pointer;
  transition:background .2s;margin-top:.5rem;
}
.form-submit:hover{background:var(--gold2)}

/* ══ FOOTER ══ */
footer{
  background:#070910;padding:2rem 1.25rem;
  border-top:1px solid var(--border);
}
.footer-inner{
  display:flex;flex-direction:column;gap:1.5rem;align-items:center;text-align:center;
}
@media(min-width:768px){.footer-inner{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem}
.footer-nav a{color:var(--gray2);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;transition:color .2s}
.footer-nav a:hover{color:var(--gold)}
.footer-copy{color:#9aa0b0;font-size:.75rem}

/* ══ ASSISTENTE VIRTUAL CTA ══ */
#assistente{
  padding:6rem 1.25rem;
  background:linear-gradient(160deg,#0b0e1b 0%,#131a12 55%,#0c0f1c 100%);
  border-top:1px solid var(--border2);
  border-bottom:1px solid var(--border);
  position:relative;overflow:hidden;text-align:center;
}
#assistente::before{
  content:'';
  position:absolute;top:0;right:0;bottom:0;left:0;
  background:radial-gradient(ellipse 70% 50% at 50% 100%,rgba(201,165,90,.07) 0%,transparent 70%);
  pointer-events:none;z-index:0;
}
#assistente .ast-inner{max-width:680px;margin:0 auto;position:relative;z-index:1}
#assistente .ast-badge{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.65rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(201,165,90,.3);
  padding:8px 22px;border-radius:100px;margin-bottom:2rem;
}
#assistente .ast-dot{
  width:7px;height:7px;border-radius:50%;background:var(--gold);
  animation:ast-pulse 2s ease-in-out infinite;flex-shrink:0;
}
@keyframes ast-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.65)}}
#assistente .ast-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4.5vw,3.4rem);
  font-weight:600;line-height:1.12;color:var(--white);margin-bottom:1rem;
}
#assistente .ast-title em{color:var(--gold);font-style:italic}
#assistente .ast-sub{
  font-size:1.05rem;color:var(--gray);line-height:1.7;font-weight:300;
  margin:0 auto 2.2rem;max-width:520px;
}
#assistente .ast-feats{
  display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-bottom:2.8rem;
}
#assistente .ast-feat{
  font-size:.68rem;letter-spacing:.06em;color:var(--gray2);
  display:flex;align-items:center;gap:7px;
}
#assistente .ast-feat-check{color:var(--gold);font-size:.85rem;font-weight:700}
#assistente .ast-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:#0c0f1c;
  padding:1.05rem 3rem;border-radius:10px;
  font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  text-decoration:none;transition:background .25s,transform .25s,box-shadow .25s;
}
#assistente .ast-btn svg{width:18px;height:18px;flex-shrink:0}
#assistente .ast-btn:hover{background:var(--gold2);transform:translateY(-3px);box-shadow:0 14px 40px rgba(201,165,90,.2)}
#assistente .ast-nudge{
  margin-top:1.4rem;font-size:.68rem;letter-spacing:.05em;color:rgba(138,145,168,.45);
}
#assistente .ast-nudge a{color:rgba(201,165,90,.6);text-decoration:none;transition:color .2s}
#assistente .ast-nudge a:hover{color:var(--gold)}
@media(max-width:640px){
  #assistente{padding:4rem 1.25rem}
  #assistente .ast-feats{gap:.8rem;flex-direction:column;align-items:center}
  #assistente .ast-btn{width:100%;justify-content:center}
}

/* ══ WEB STORIES SECTION ══ */
#stories{text-align:center;overflow:hidden}
.stories-intro{color:var(--gray);font-size:.95rem;line-height:1.8;max-width:560px;margin:0 auto 3rem}
.stories-scroll{
  display:flex;gap:1rem;overflow-x:auto;padding:.5rem .25rem 1.5rem;
  scrollbar-width:none;-ms-overflow-style:none;
}
.stories-scroll::-webkit-scrollbar{display:none}
@media(min-width:980px){.stories-scroll{justify-content:center;flex-wrap:wrap;overflow-x:visible}}
.story-preview{
  flex:0 0 138px;text-decoration:none;display:block;
  transition:transform .25s,box-shadow .25s;
}
.story-preview:hover{transform:translateY(-5px) scale(1.03)}
.story-preview-img{
  width:138px;height:245px;border-radius:14px;
  background:linear-gradient(180deg, var(--sc) 0%, var(--sc2) 100%);
  border:1px solid var(--border2);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:.8rem .7rem;position:relative;overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.4);
}
.story-preview-img::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.05) 65%);
  border-radius:inherit;pointer-events:none;
}
.story-preview-img::after{
  content:'▶';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-60%);
  font-size:1.5rem;color:rgba(255,255,255,.25);
  transition:color .2s;pointer-events:none;
}
.story-preview:hover .story-preview-img::after{color:rgba(255,255,255,.6)}
.story-preview-area{
  position:relative;z-index:1;
  font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-bottom:.35rem;display:block;
}
.story-preview-title{
  position:relative;z-index:1;
  font-size:.7rem;color:var(--white);line-height:1.4;font-weight:400;
}
.stories-ver-todos{margin-top:2.5rem}
.btn-ver-stories{
  display:inline-flex;align-items:center;gap:.55rem;
  border:1px solid var(--border2);color:var(--gold);
  padding:.8rem 2.2rem;border-radius:8px;text-decoration:none;
  font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;
  transition:background .2s,border-color .2s,gap .2s;
}
.btn-ver-stories:hover{background:var(--gold-dim);border-color:var(--gold);gap:.9rem}
.fi.d4{transition-delay:.4s}

/* ══ WA FLOAT ══ */
.wa-float{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:300;
  background:#25D366;width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  text-decoration:none;transition:transform .3s;
}
.wa-float:hover{transform:scale(1.12)}

/* ══ FADE IN ══ */
.fi{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s ease}
.fi.d1{transition-delay:.1s}.fi.d2{transition-delay:.2s}.fi.d3{transition-delay:.3s}
.fi.on{opacity:1;transform:none}

