*,*::before,*::after{cursor:none!important}
*{margin:0;padding:0;box-sizing:border-box}
html{cursor:none;}
a,button,input,textarea,select{cursor:pointer;}
:root{
  --ouro:#b8965a;
  --ouro-claro:#d4b483;
  --ouro-brilho:#e8cc96;
  --creme:#f5f0e8;
  --creme-escuro:#ede6d6;
  --preto:#0a0a0a;
  --preto-medio:#111111;
  --preto-suave:#1a1a1a;
  --cinza-quente:#a89b88;
  --cinza-texto:#8a7d6b;
  --branco:#fdfaf5;
}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;font-size:21px;background:var(--branco);color:var(--preto);overflow-x:hidden;}

#cursor{width:8px;height:8px;background:#8b6914;border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);transition:width .3s,height .3s,background .3s;box-shadow:0 0 0 2px rgba(0,0,0,0.3);}
#cursor-ring{width:36px;height:36px;border:1px solid #b8965a;border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9998;transform:translate(-50%,-50%);transition:all .06s ease-out;-webkit-appearance:none;}
body:has(a:hover) #cursor,body:has(button:hover) #cursor{width:20px;height:20px;background:var(--ouro-brilho);}

body::before{content:'';position:fixed;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");pointer-events:none;z-index:1000;opacity:.4;}

nav{position:fixed;top:0;left:0;right:0;z-index:500;padding:20px 60px;display:flex;align-items:center;justify-content:space-between;transition:all .4s ease;}
nav.scrolled{background:rgba(253,250,245,.95);backdrop-filter:blur(14px);padding:14px 60px;border-bottom:1px solid rgba(184,150,90,.15);}
.nav-logo{max-width:200px;padding-right:24px;transition:all .4s ease;}
.nav-logo.scrolled svg path{fill: #000;}
.nav-logo span{color:var(--ouro)}
.nav-links{display:flex;gap:32px;list-style:none;}
.nav-links a{font-size:17px;letter-spacing:.1em;text-transform:uppercase;color:var(--branco);text-decoration:none;transition:color .3s;position:relative;}
.nav-links.scrolled a{color: var(--cinza-texto);}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;right:0;height:1px;background:var(--ouro);transform:scaleX(0);transition:transform .3s ease;}
.nav-links a:hover{color:var(--ouro-brilho)}
.nav-links a:hover::after{transform:scaleX(1)}
.nav-cta{background:var(--ouro);color:var(--preto);border:none;padding:11px 24px;font-family:'Outfit',sans-serif;font-size:17px;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;transition:all .3s ease;}
.nav-cta.scrolled{background:var(--preto);color:var(--ouro);border:none;padding:11px 24px;font-family:'Outfit',sans-serif;font-size:17px;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;transition:all .3s ease;}
.nav-cta:hover{background:var(--ouro-brilho);color:var(--preto)}

.hero{max-height:80%;display:flex;position:relative;overflow:hidden;background:var(--preto);}
.hero-left{background:var(--preto);padding:140px 80px 80px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;position:relative;overflow:hidden;width:50%;}
.hero-left::before{content:'';position:absolute;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(184,150,90,.1) 0%,transparent 70%);top:-100px;left:-150px;animation:pulse 6s ease-in-out infinite;}
.hero-left::after{content:'';position:absolute;bottom:-50px;right:-50px;width:300px;height:300px;border:1px solid rgba(184,150,90,.08);border-radius:50%;animation:pulse 8s ease-in-out infinite reverse;}
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.05);opacity:.7}}
.hero-eyebrow{font-size:16px;letter-spacing:.25em;text-transform:uppercase;color:var(--ouro);margin-bottom:28px;display:flex;align-items:center;justify-content:center;gap:14px;animation:fadeUp .8s ease forwards;opacity:0;}
.hero-eyebrow::before{content:'';width:32px;height:1px;background:var(--ouro);}
.hero-eyebrow::after{content:'';width:32px;height:1px;background:var(--ouro);}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(58px,6.5vw,96px);font-weight:300;line-height:1.05;color:var(--creme);margin-bottom:20px;animation:fadeUp .8s ease .15s forwards;opacity:0;text-align:center;}
.hero-title em{font-style:italic;color:var(--ouro-claro);display:block;}
.hero-title strong{font-weight:600;display:block;}
.hero-desc{font-size:22px;color:rgba(245,240,232,.5);line-height:1.8;max-width:520px;margin-bottom:44px;font-weight:300;animation:fadeUp .8s ease .3s forwards;opacity:0;text-align:center;}
.hero-actions{display:flex;gap:16px;justify-content:center;animation:fadeUp .8s ease .45s forwards;opacity:0;}
.btn-gold{background:var(--ouro);color:var(--preto);border:none;padding:16px 32px;font-family:'Outfit',sans-serif;font-size:17px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;transition:all .3s ease;position:relative;overflow:hidden;}
.btn-gold::before{content:'';position:absolute;inset:0;background:var(--ouro-brilho);transform:translateX(-100%);transition:transform .4s ease;}
.btn-gold:hover::before{transform:translateX(0)}
.btn-gold span{position:relative;z-index:1}
.btn-outline{background:transparent;color:rgba(245,240,232,.6);border:1px solid rgba(184,150,90,.3);padding:16px 32px;font-family:'Outfit',sans-serif;font-size:17px;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;transition:all .3s ease;}
.btn-outline:hover{border-color:var(--ouro);color:var(--ouro-claro);}
.hero-badge{margin-top:60px;padding:20px 0 0;border-top:1px solid rgba(184,150,90,.12);display:flex;gap:36px;justify-content:center;animation:fadeUp .8s ease .6s forwards;opacity:0;}
.badge-item{display:flex;flex-direction:column;gap:4px;}
.badge-num{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:600;color:var(--ouro-claro);line-height:1;}
.badge-lbl{font-size:15px;letter-spacing:.08em;text-transform:uppercase;color:rgba(245,240,232,.5);}

.hero-right{max-width: 50%;background:var(--preto-suave);position:relative;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;}
.hero-right::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 20%,rgba(184,150,90,.07) 0%,transparent 55%),linear-gradient(to top,var(--preto) 0%,transparent 50%);z-index:2;pointer-events:none;}
.dr-photo{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;filter:grayscale(15%) contrast(1.05);animation:photoReveal 1.2s ease .4s forwards;opacity:0;transform:scale(1.05);}
@keyframes photoReveal{to{opacity:1;transform:scale(1);}}
.dr-overlay-bottom{position:absolute;bottom:0;left:0;right:0;padding:40px 40px 32px;z-index:3;background:linear-gradient(to top,rgba(10,10,10,.95) 0%,rgba(10,10,10,.6) 60%,transparent 100%);}
.dr-name{font-family:'Cormorant Garamond',serif;font-size:29px;font-weight:600;color:var(--creme);letter-spacing:.02em;margin-bottom:4px;}
.dr-title{font-size:14px;letter-spacing:.15em;text-transform:uppercase;color:var(--ouro);}
.dr-gold-bar{width:40px;height:2px;background:linear-gradient(90deg,var(--ouro),var(--ouro-brilho));margin-bottom:14px;}
.gold-frame{position:absolute;top:40px;right:40px;width:60px;height:60px;border-top:1px solid rgba(184,150,90,.4);border-right:1px solid rgba(184,150,90,.4);z-index:4;pointer-events:none;animation:fadeUp .8s ease .8s forwards;opacity:0;}
.gold-frame-bl{position:absolute;bottom:120px;left:30px;width:40px;height:40px;border-bottom:1px solid rgba(184,150,90,.25);border-left:1px solid rgba(184,150,90,.25);z-index:4;pointer-events:none;}

.urgencia{background:var(--preto-medio);padding:22px 60px;display:flex;align-items:center;justify-content:center;gap:20px;}
.urgencia-dot{width:8px;height:8px;border-radius:50%;background:#c0392b;animation:blink 1.5s ease-in-out infinite;}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}
.urgencia-text{font-size:17px;letter-spacing:.06em;color:rgba(245,240,232,.6);}
.urgencia-text strong{color:var(--ouro-claro)}

.equipe{
  background:var(--preto);
  padding:100px 60px;
  position:relative;
  overflow:hidden;
}
.equipe::before{
  content:'';position:absolute;
  top:-150px;left:-150px;
  width:500px;height:500px;border-radius:50%;
  background:radial-gradient(circle,rgba(184,150,90,.05) 0%,transparent 70%);
}
.equipe::after{
  content:'';position:absolute;
  bottom:-150px;right:-100px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(184,150,90,.04) 0%,transparent 70%);
}
.equipe-header{text-align:center;margin-bottom:72px;}
.equipe-header .section-eyebrow{justify-content:center;}
.equipe-header .section-title{color:var(--creme);}
.equipe-header .section-sub{color:rgba(245,240,232,.4);margin:0 auto;}

.equipe-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  background:rgba(184,150,90,.08);
  position:relative;
  z-index:1;
}

.adv-card{
  background:var(--preto-suave);
  display:grid;
  grid-template-columns:280px 1fr;
  overflow:hidden;
  transition:background .4s ease;
  position:relative;
}
.adv-card:hover{background:rgba(184,150,90,.04);}

.adv-foto-wrap{
  position:relative;
  overflow:hidden;
  height:420px;
}
.adv-foto{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  filter:grayscale(20%) contrast(1.02);
  transition:transform .7s ease, filter .5s ease;
}
.adv-card:hover .adv-foto{
  transform:scale(1.04);
  filter:grayscale(5%) contrast(1.05);
}
.adv-foto-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right, transparent 60%, var(--preto-suave) 100%),
             linear-gradient(to bottom, var(--preto) 0%, transparent 15%);
  transition:background .4s;
}
.adv-card:hover .adv-foto-overlay{
  background:linear-gradient(to right, transparent 60%, rgba(184,150,90,.04) 100%),
             linear-gradient(to bottom, var(--preto) 0%, transparent 15%);
}

.adv-foto-wrap::after{
  content:'';
  position:absolute;
  top:0;bottom:0;right:0;
  width:2px;
  background:linear-gradient(to bottom, transparent, var(--ouro), transparent);
  opacity:0;
  transition:opacity .4s ease;
}
.adv-card:hover .adv-foto-wrap::after{opacity:1;}

.adv-info{
  padding:48px 40px 48px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.adv-num{
  font-family:'Cormorant Garamond',serif;
  font-size:67px;
  font-weight:300;
  color:rgba(184,150,90,.07);
  line-height:1;
  margin-bottom:20px;
  transition:color .4s;
}
.adv-card:hover .adv-num{color:rgba(184,150,90,.13);}
.adv-gold-bar{
  width:32px;height:1px;
  background:linear-gradient(90deg,var(--ouro),var(--ouro-brilho));
  margin-bottom:18px;
}
.adv-name{
  font-family:'Cormorant Garamond',serif;
  font-size:31px;
  font-weight:600;
  color:var(--creme);
  line-height:1.1;
  margin-bottom:6px;
  letter-spacing:.01em;
}
.adv-cargo{
  font-size:15px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ouro);
  margin-bottom:24px;
}
.adv-bio{
  font-size:18px;
  color:rgba(245,240,232,.42);
  line-height:1.85;
  font-weight:300;
  margin-bottom:28px;
}
.adv-especialidades{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:32px;
}
.adv-tag{
  font-size:14px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ouro);
  padding:5px 12px;
  border:1px solid rgba(184,150,90,.2);
  transition:all .3s;
}
.adv-card:hover .adv-tag{border-color:rgba(184,150,90,.35);}
.adv-oab{
  font-size:15px;
  color:rgba(245,240,232,.3);
  letter-spacing:.1em;
  margin-top:auto;
  padding-top:24px;
  border-top:1px solid rgba(184,150,90,.08);
}

.areas{background:var(--branco);padding:100px 60px;}
.areas-header{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:end;margin-bottom:64px;}
.areas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(184,150,90,.1);border:1px solid rgba(184,150,90,.1);}
.area-card{background:var(--branco);padding:36px 28px;transition:all .4s ease;position:relative;overflow:hidden;}
.area-card::before{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--ouro),var(--ouro-brilho));transform:scaleX(0);transform-origin:left;transition:transform .4s ease;}
.area-card:hover{background:var(--creme)}
.area-card:hover::before{transform:scaleX(1)}
.area-num{font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:300;color:rgba(184,150,90,.18);line-height:1;margin-bottom:20px;transition:color .4s;}
.area-card:hover .area-num{color:rgba(184,150,90,.4)}
.area-title{font-size:19px;font-weight:500;color:var(--preto);margin-bottom:10px;line-height:1.4;}
.area-desc{font-size:17px;color:var(--cinza-texto);line-height:1.7;font-weight:300;}
.area-tag{display:inline-block;margin-top:16px;font-size:14px;letter-spacing:.12em;text-transform:uppercase;color:var(--ouro);padding:4px 10px;border:1px solid rgba(184,150,90,.25);}

.processo{background:var(--preto);padding:100px 60px;position:relative;overflow:hidden;}
.processo::before{content:'';position:absolute;top:-200px;right:-200px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(184,150,90,.05) 0%,transparent 70%);}
.processo .section-title{color:var(--creme)}
.processo .section-sub{color:rgba(245,240,232,.4);max-width:420px}
.processo-header{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-bottom:72px;}
.fases{display:grid;grid-template-columns:repeat(5,1fr);gap:0;position:relative;}
.fases::before{content:'';position:absolute;top:24px;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(184,150,90,.3),rgba(184,150,90,.3),transparent);}
.fase{padding:0 12px;text-align:center;position:relative;}
.fase-circle{width:48px;height:48px;border:1px solid rgba(184,150,90,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;background:var(--preto);position:relative;z-index:1;transition:all .3s;}
.fase:hover .fase-circle{border-color:var(--ouro);background:rgba(184,150,90,.08);}
.fase-n{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;color:var(--ouro);}
.fase-name{font-size:20px;font-weight:500;color:var(--creme);margin-bottom:8px;}
.fase-desc{font-size:18px;color:rgba(245,240,232,.55);line-height:1.7;}

.faq{background:var(--creme-escuro);padding:100px 60px}
.faq-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:100px;align-items:start;}
.faq-sticky{position:sticky;top:120px}
.faq-item{border-bottom:1px solid rgba(184,150,90,.15);}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:24px 0;background:transparent;border:none;text-align:left;cursor:pointer;transition:all .3s;}
.faq-question:hover .fq-text{color:var(--ouro)}
.fq-text{font-size:20px;font-weight:400;color:var(--preto);line-height:1.4;transition:color .3s;}
.fq-icon{width:28px;height:28px;border:1px solid rgba(184,150,90,.3);border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--ouro);font-size:19px;transition:all .3s;}
.faq-item.open .fq-icon{background:var(--ouro);color:var(--preto);border-color:var(--ouro);transform:rotate(45deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .5s ease,padding .3s ease;}
.faq-item.open .faq-answer{max-height:300px;padding-bottom:20px}
.faq-answer p{font-size:18px;color:var(--cinza-texto);line-height:1.8;font-weight:300;}

.depo{background:var(--branco);padding:100px 60px}
.depo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px;}
.depo-card{padding:36px;border:1px solid rgba(184,150,90,.12);background:var(--creme);position:relative;transition:all .4s ease;}
.depo-card:hover{border-color:rgba(184,150,90,.3);transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.06);}
.depo-quote{font-family:'Cormorant Garamond',serif;font-size:52px;color:rgba(184,150,90,.2);line-height:1;margin-bottom:16px;}
.depo-text{font-size:21px;font-style:italic;color:var(--cinza-texto);line-height:1.8;margin-bottom:24px;font-family:'Cormorant Garamond',serif;font-weight:500;}
.depo-divider{width:32px;height:1px;background:var(--ouro);margin-bottom:16px;}
.depo-nome{font-size:18px;font-weight:500;color:var(--preto);margin-bottom:3px;}
.depo-tipo{font-size:15px;letter-spacing:.1em;text-transform:uppercase;color:var(--ouro);}

.cta-final{background:var(--preto);padding:120px 60px;text-align:center;position:relative;overflow:hidden;}
.cta-final::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(184,150,90,.07) 0%,transparent 60%);}
.cta-final::after{content:'FRUTUOSO';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-family:'Cormorant Garamond',serif;font-size:200px;font-weight:700;color:rgba(184,150,90,.025);white-space:nowrap;pointer-events:none;letter-spacing:.1em;}
.cta-eyebrow{font-size:15px;letter-spacing:.25em;text-transform:uppercase;color:var(--ouro);margin-bottom:24px;}
.cta-title{font-family:'Cormorant Garamond',serif;font-size:clamp(44px,5vw,72px);font-weight:300;color:var(--creme);line-height:1.05;margin-bottom:20px;position:relative;z-index:1;}
.cta-title em{font-style:italic;color:var(--ouro-claro)}
.cta-sub{font-size:20px;color:rgba(245,240,232,.4);max-width:440px;margin:0 auto 48px;line-height:1.8;font-weight:300;position:relative;z-index:1;}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1;}
.btn-whats{background:#25d366;color:#0d1f0d;text-decoration:none;border:none;padding:18px 36px;font-family:'Outfit',sans-serif;font-size:17px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;cursor:pointer;display:flex;align-items:center;gap:10px;transition:all .3s ease;}
.btn-whats:hover{background:#1db954;transform:translateY(-2px)}
.cta-trust{margin-top:40px;font-size:16px;color:rgba(245,240,232,.4);letter-spacing:.08em;position:relative;z-index:1;}
.cta-trust span{margin:0 16px;}

footer{background:var(--preto-medio);border-top:1px solid rgba(184,150,90,.07);}
.footer-top{
  padding:64px 60px 48px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:48px;
  border-bottom:1px solid rgba(184,150,90,.07);
}
.footer-col-title{
  font-size:15px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ouro);
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(184,150,90,.2);
}
.footer-col p, .footer-col address{
  font-size:17px;
  color:rgba(245,240,232,.55);
  line-height:1.9;
  font-style:normal;
  font-weight:300;
}
.footer-col strong{
  font-size:16px;
  font-weight:500;
  color:rgba(245,240,232,.55);
  display:block;
  margin-top:12px;
  margin-bottom:2px;
}
.footer-col strong:first-of-type{margin-top:0;}
.footer-logo-col{display:flex;flex-direction:column;gap:12px;}
.footer-logo{font-family:'Cormorant Garamond',serif;font-size:27px;font-weight:600;color:var(--ouro-claro);letter-spacing:.05em;}
.footer-cnpj{font-size:16px;color:rgba(245,240,232,.4);letter-spacing:.04em;line-height:1.7;}
.footer-cnpj span{color:rgba(184,150,90,.5);}
.footer-socials{display:flex;gap:12px;margin-top:8px;}
.footer-social-icon{
  width:32px;height:32px;
  border:1px solid rgba(184,150,90,.15);
  display:flex;align-items:center;justify-content:center;
  color:rgba(245,240,232,.45);
  font-size:16px;
  transition:all .3s;
  text-decoration:none;
}
.footer-social-icon:hover{border-color:var(--ouro);color:var(--ouro);}
.footer-bottom{
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-copy{font-size:15px;color:rgba(245,240,232,.35);letter-spacing:.06em;}
.footer-advs{font-size:15px;color:rgba(245,240,232,.35);letter-spacing:.04em;}

.section-eyebrow{font-size:15px;letter-spacing:.22em;text-transform:uppercase;color:var(--ouro);margin-bottom:16px;display:flex;align-items:center;gap:12px;}
.section-eyebrow::before{content:'';width:24px;height:1px;background:var(--ouro);}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,4vw,54px);font-weight:300;line-height:1.1;color:var(--preto);margin-bottom:20px;}
.section-title em{font-style:italic;color:var(--ouro)}
.section-sub{font-size:20px;color:var(--cinza-texto);line-height:1.8;max-width:520px;font-weight:300;}
.gold-line{width:48px;height:1px;background:linear-gradient(90deg,var(--ouro),var(--ouro-brilho));margin:0 auto 32px;}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:.1s}.reveal-delay-2{transition-delay:.2s}.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}.reveal-delay-5{transition-delay:.5s}.reveal-delay-6{transition-delay:.6s}
.reveal-delay-7{transition-delay:.7s}.reveal-delay-8{transition-delay:.8s}

.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:6px;cursor:pointer;}
.nav-hamburger span{display:block;width:22px;height:1.5px;background:var(--ouro);transition:all .3s;}
.mobile-menu{position:fixed;top:0;left:0;right:0;bottom:0;background:var(--preto);z-index:490;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:36px;transform:translateX(100%);transition:transform .4s ease;}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu a{font-family:'Cormorant Garamond',serif;font-size:41px;font-weight:300;color:var(--creme);text-decoration:none;letter-spacing:.04em;}
.mobile-menu a em{font-style:italic;color:var(--ouro);}
.mobile-menu .mm-cta{background:var(--ouro);color:var(--preto);border:none;padding:16px 44px;font-family:'Outfit',sans-serif;font-size:14px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;margin-top:8px;cursor:pointer;}
.floating-cta{display:flex;position:fixed;bottom:28px;right:28px;z-index:10000;width:56px;height:56px;text-decoration:none;color:#fff;background:#25d366;border:none;border-radius:50%;align-items:center;justify-content:center;transition:all .3s;box-shadow:0 4px 16px rgba(37,211,102,.35);}
.floating-cta svg{width:28px;height:28px;}
.floating-cta:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,.45);}
.floating-cta.hidden{opacity:0;pointer-events:none;}
@media(max-width:1023px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .nav-hamburger{display:flex;}
  .hero{display:flex;flex-direction:column-reverse;max-height:none;overflow:visible;}
  .hero-left{padding:90px 24px 60px;width:100%;}
  .hero-right{width:100%;max-width:100%;height:50vh;position:relative;}
  .hero-right img{height:100%;object-fit:cover;object-position:center top;}
  .hero-badge{flex-wrap:wrap;gap:20px;}
  .equipe-grid{grid-template-columns:1fr;}
  .adv-card{grid-template-columns:200px 1fr;}
  .adv-foto-wrap{min-height:320px;}
  .areas-header{grid-template-columns:1fr;gap:16px;}
  .areas-grid{grid-template-columns:repeat(2,1fr);}
  .processo-header{grid-template-columns:1fr;gap:20px;}
  .faq-layout{grid-template-columns:1fr;gap:32px;}
  .faq-sticky{position:static;}
  .depo-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;gap:28px;}
  .footer-bottom{flex-direction:column;gap:6px;}
}
@media(max-width:600px){
  :root{--pad:20px;}
  /* NAVBAR */
  nav{padding:14px 20px !important;}
  .nav-logo{max-width:140px;}
  .nav-logo svg{width:140px;height:auto;}
  .nav-hamburger{margin-left:auto;display:flex;}
  /* HERO */
  .hero{display:flex;flex-direction:column;max-height:none;overflow:visible;}
  .hero-left{width:100%;padding:80px 20px 40px;text-align:center;}
  .hero-eyebrow{font-size:14px;margin-bottom:16px;}
  .hero-eyebrow::before,.hero-eyebrow::after{width:20px;}
  .hero-title{font-size:clamp(32px,10vw,44px);margin-bottom:12px;}
  .hero-desc{font-size:18px;margin-bottom:24px;}
  .hero-actions{flex-direction:column;gap:12px;width:100%;}
  .hero-actions button{width:100%;}
  .hero-badge{padding:20px 0 0;gap:16px;flex-wrap:wrap;justify-content:center;}
  .hero-badge .badge-item{text-align:center;}
  .hero-badge .badge-num{font-size:22px;}
  .hero-right{width:100%;max-width:100%;height:55vh;order:-1;position:relative;}
  .hero-right img{width:100%;height:100%;object-fit:cover;}
  /* URGENCIA */
  .urgencia{padding:14px 20px;flex-direction:column;text-align:center;gap:8px;}
  .urgencia-text{font-size:16px;}
  /* EQUIPE */
  .equipe{padding:60px 20px;}
  .equipe-header{margin-bottom:40px;}
  .section-eyebrow{font-size:14px;justify-content:center;}
  .section-title{font-size:33px;}
  .section-sub{font-size:18px;}
  .equipe-grid{grid-template-columns:1fr;gap:0;}
  .adv-card{display:flex;flex-direction:column;}
  .adv-foto-wrap{width:100%;height:420px;}
  .adv-foto{object-position:center top;}
  .adv-info{padding:24px 20px;}
  .adv-num{font-size:48px;margin-bottom:12px;}
  .adv-name{font-size:27px;}
  .adv-cargo{font-size:14px;}
  .adv-bio{font-size:17px;line-height:1.6;}
  .adv-especialidades{gap:6px;}
  .adv-tag{font-size:13px;padding:4px 8px;}
  /* AREAS */
  .areas{padding:60px 20px;}
  .areas-header{grid-template-columns:1fr;gap:24px;margin-bottom:40px;}
  .areas-grid{grid-template-columns:1fr;gap:0;}
  .area-card{padding:24px 20px;}
  .area-num{font-size:32px;margin-bottom:12px;}
  .area-title{font-size:19px;}
  .area-desc{font-size:16px;}
  /* PROCESSO */
  .processo{padding:60px 20px;}
  .processo-header{grid-template-columns:1fr;gap:24px;margin-bottom:40px;}
  .fases{grid-template-columns:1fr;gap:24px;}
  .fases::before{display:none;}
  .fase{display:flex;align-items:center;gap:16px;padding:0;text-align:left;}
  .fase-circle{width:40px;height:40px;margin:0;flex-shrink:0;}
  .fase-n{font-size:19px;}
  .fase-name{font-size:17px;}
  .fase-desc{font-size:15px;}
  /* FAQ */
  .faq{padding:60px 20px;}
  .faq-layout{grid-template-columns:1fr;gap:24px;}
  .faq-sticky{position:static;}
  .fq-text{font-size:19px;}
  .fq-icon{width:26px;height:26px;font-size:18px;}
  /* DEPOIMENTOS */
  .depo{padding:60px 20px;}
  .depo-grid{grid-template-columns:1fr;gap:16px;margin-top:32px;}
  .depo-card{padding:24px;}
  .depo-quote{font-size:40px;}
  .depo-text{font-size:18px;}
  /* CTA FINAL */
  .cta-final{padding:60px 20px;}
  .cta-eyebrow{font-size:14px;}
  .cta-title{font-size:37px;}
  .cta-sub{font-size:18px;}
  .cta-buttons{flex-direction:column;gap:12px;}
  .btn-whats,.btn-gold,.btn-outline{width:100%;padding:16px;justify-content:center;}
  .cta-trust{font-size:15px;}
  .cta-trust span{display:block;margin:4px 0;}
  /* FOOTER */
  footer{padding:0 20px;}
  .footer-top{grid-template-columns:1fr;gap:24px;padding:40px 0 32px;}
  .footer-col-title{font-size:14px;}
  .footer-col p,.footer-col address{font-size:16px;}
  .footer-col strong{font-size:15px;}
  .footer-bottom{padding:16px 0;flex-direction:column;gap:8px;text-align:center;}
  .footer-copy,.footer-advs{font-size:14px;}
  /* MOBILE MENU */
  .mobile-menu{padding:20px;}
  .mobile-menu a{font-size:31px;}
  /* FLOATING CTA */
  .floating-cta{right:16px;bottom:16px;}
}