/* ═══════════════════════════════════
   MANIFEX — MODERN SITE LAYER
   (mesmo layout, visual atualizado)
═══════════════════════════════════ */
.site-modern{
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:32px;
  --nav-h:76px;
  --shadow-sm:0 2px 8px rgba(15,23,42,.04);
  --shadow-md:0 12px 40px rgba(15,23,42,.08);
  --shadow-lg:0 24px 64px rgba(15,23,42,.12);
  --shadow-em:0 16px 48px rgba(5,150,105,.18);
  --glass:rgba(255,255,255,.72);
  --glass-border:rgba(255,255,255,.55);
  --gradient-hero:radial-gradient(ellipse 90% 70% at 10% 20%, rgba(5,150,105,.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(77,51,136,.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 90%, rgba(214,117,20,.05) 0%, transparent 45%);
  --gradient-dark:radial-gradient(ellipse 80% 60% at 20% 80%, rgba(5,150,105,.22) 0%, transparent 55%),
    linear-gradient(165deg, #0F172A 0%, #111827 50%, #0F172A 100%);
  --gradient-cta:linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.site-modern::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.35;
  background-image:linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(180deg, black 0%, transparent 85%);
}

/* ── NAV ── */
.site-modern .nav{
  background:var(--glass);
  backdrop-filter:blur(20px) saturate(1.4);
  -webkit-backdrop-filter:blur(20px) saturate(1.4);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.site-modern .nav.scrolled{
  box-shadow:var(--shadow-md);
  background:rgba(255,255,255,.88);
}
.site-modern .nav__inner{height:var(--nav-h);min-width:0}
.site-modern .nav__logo img{
  border-radius:10px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease;
  width:var(--logo-nav-width,32px);
  height:var(--logo-nav-height,32px);
  object-fit:contain;
}
.site-modern .nav__logo--solo{gap:0;max-width:none;flex-shrink:0;overflow:visible}
.site-modern .site-logo--footer{
  width:var(--logo-footer-width,36px)!important;
  height:var(--logo-footer-height,36px)!important;
  object-fit:contain;
  border-radius:10px;
}
.site-modern .nav__logo:hover img{transform:scale(1.05)}
.site-modern .nav__links a{
  position:relative;
  padding:.35rem 0;
}
.site-modern .nav__links a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--em);
  border-radius:2px;
  transition:width .25s ease;
}
.site-modern .nav__links a:hover::after,
.site-modern .nav__links a.is-active::after{width:100%}
.site-modern .nav__links a.is-active{color:var(--dark)}
.site-modern .nav__member,
.site-modern .nav__cta{
  border-radius:999px;
  box-shadow:var(--shadow-sm);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.site-modern .nav__member:hover,
.site-modern .nav__cta:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}
.site-modern .nav__mobile{
  border-radius:0 0 var(--radius-md) var(--radius-md);
  backdrop-filter:blur(16px);
}
.site-modern .nav__hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-modern .nav__hamburger.is-open span:nth-child(2){opacity:0}
.site-modern .nav__hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── HERO ── */
.site-modern .hero-wrap{
  position:relative;
  overflow:hidden;
  background:var(--gradient-hero);
}
.site-modern .hero-wrap::before,
.site-modern .hero-wrap::after{
  content:'';
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  pointer-events:none;
}
.site-modern .hero-wrap::before{
  width:420px;height:420px;
  top:-120px;right:-80px;
  background:rgba(5,150,105,.12);
}
.site-modern .hero-wrap::after{
  width:320px;height:320px;
  bottom:-80px;left:10%;
  background:rgba(77,51,136,.08);
}
.site-modern .hero{
  position:relative;
  z-index:1;
}
.site-modern .hero__pre{
  background:rgba(5,150,105,.08);
  border:1px solid rgba(5,150,105,.15);
  padding:.45rem 1rem .45rem .75rem;
  border-radius:999px;
  backdrop-filter:blur(8px);
}
.site-modern .hero__pre::before{display:none}
.site-modern h1.hero__title{
  background:linear-gradient(135deg, var(--dark) 55%, var(--em) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.site-modern h1.hero__title span{
  -webkit-text-fill-color:var(--em);
  background:none;
}
.site-modern .btn{
  border-radius:999px;
  box-shadow:var(--shadow-sm);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.site-modern .btn:hover:not(:disabled){
  box-shadow:var(--shadow-md);
}
.site-modern .btn-em:hover:not(:disabled){box-shadow:var(--shadow-em)}

/* ── MARQUEE ── */
.site-modern .marquee-wrap{
  background:var(--gradient-dark);
  border-block:1px solid rgba(255,255,255,.06);
  position:relative;
}
.site-modern .marquee-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, var(--dark), transparent 8%, transparent 92%, var(--dark));
  z-index:2;
  pointer-events:none;
}
.site-modern .marquee-item{color:rgba(255,255,255,.08)}

/* ── SECTIONS ── */
.site-modern .section-header{
  margin-bottom:clamp(2rem,4vw,3.5rem);
}
.site-modern .section-header--center{text-align:center}
.site-modern .section-header--center .badge{justify-content:center}
.site-modern .section-header--center .badge::before{display:none}
.site-modern .section-header--center .badge::after{
  content:'';
  display:block;
  width:2rem;height:2px;
  background:var(--em);
}
.site-modern .section--soft{
  background:linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.site-modern .badge{
  border-radius:999px;
  padding:.35rem .85rem .35rem .5rem;
  background:rgba(5,150,105,.06);
  border:1px solid rgba(5,150,105,.1);
}
.site-modern .badge--em{background:rgba(5,150,105,.08);border-color:rgba(5,150,105,.15)}
.site-modern .reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.site-modern .reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ── SERVICE CARDS ── */
.site-modern .card{
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,.07);
  background:linear-gradient(180deg, var(--white) 0%, rgba(248,250,252,.6) 100%);
  box-shadow:var(--shadow-sm);
  position:relative;
  overflow:hidden;
}
.site-modern .card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, var(--em), transparent);
  opacity:0;
  transition:opacity .25s ease;
}
.site-modern .card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(5,150,105,.2);
}
.site-modern .card:hover::before{opacity:1}
.site-modern .card__ico-wrap{
  width:52px;height:52px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
  background:rgba(5,150,105,.1);
  transition:transform .25s ease;
}
.site-modern .card:hover .card__ico-wrap{transform:scale(1.06)}
.site-modern .card__ico-wrap--coral{background:rgba(214,117,20,.12)}
.site-modern .card__ico-wrap--coral i{color:var(--coral)}
.site-modern .card__ico-wrap--purple{background:rgba(77,51,136,.12)}
.site-modern .card__ico-wrap--purple i{color:var(--purple)}
.site-modern .card__ico-wrap--em i{color:var(--em)}

/* ── MANIFESTO ── */
.site-modern .manifesto-section{
  background:var(--gradient-dark);
  position:relative;
  overflow:hidden;
}
.site-modern .manifesto-section::before{
  content:'';
  position:absolute;
  width:500px;height:500px;
  top:-200px;right:-100px;
  border-radius:50%;
  background:rgba(5,150,105,.15);
  filter:blur(80px);
  pointer-events:none;
}
.site-modern .manifesto-text{
  font-size:1rem;
  color:rgba(255,255,255,.65);
  line-height:1.85;
  max-width:460px;
}
.site-modern .manifesto-list li{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  border-radius:var(--radius-sm);
  padding:.75rem 1rem;
  transition:background .2s ease, border-color .2s ease;
}
.site-modern .manifesto-list li:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(5,150,105,.25);
}
.site-modern .manifesto-list li i{
  background:rgba(5,150,105,.15);
  color:var(--em);
}
.site-modern .manifesto-vis{
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 24px 64px rgba(0,0,0,.25);
}
.site-modern .stat-row{
  border:1px solid rgba(255,255,255,.06);
  transition:transform .22s ease, border-color .22s ease;
}
.site-modern .stat-row:hover{
  transform:translateX(4px);
  border-color:rgba(5,150,105,.25);
}

/* ── PLANS ── */
.site-modern .plans-grid{
  align-items:stretch;
  padding-top:.75rem;
}
.site-modern .plan-card{
  border-radius:var(--radius-lg);
  background:var(--white);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(15,23,42,.08);
  overflow:visible;
  display:flex;
  flex-direction:column;
  height:100%;
  padding-top:clamp(1.75rem,4vw,2.25rem);
  cursor:default;
}
.site-modern .plan-card--feat{
  background:var(--dark);
  color:var(--white);
  border-color:transparent;
  box-shadow:var(--shadow-lg), 0 0 0 1px rgba(5,150,105,.15);
}
.site-modern .plan-card--purple{
  background:linear-gradient(180deg, rgba(77,51,136,.06) 0%, var(--white) 100%);
  border-color:rgba(77,51,136,.18);
}
.site-modern .plan-card::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:4px;
  background:linear-gradient(90deg, transparent, var(--em), transparent);
  opacity:0;
  transition:opacity .25s ease;
  border-radius:0 0 var(--radius-lg) var(--radius-lg);
}
.site-modern .plan-card:hover::after{opacity:1}
.site-modern .plan-card--feat:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg), var(--shadow-em);
}
.site-modern .plan-card:not(.plan-card--feat):hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.site-modern .plan-badge{
  border-radius:999px;
  padding:5px 14px;
  box-shadow:var(--shadow-em);
  z-index:2;
}
.site-modern .plan-card__tag{border-radius:999px;margin-bottom:.85rem}
.site-modern .plan-card__name{
  margin-bottom:.75rem;
  line-height:1.05;
}
.site-modern .plan-card__price{
  font-family:var(--font-d);
  margin:0 0 1.15rem;
  line-height:1.2;
}
.site-modern .plan-card__feats{
  flex:1;
  margin-bottom:1.5rem;
}
.site-modern .plan-card__feats li::before{
  content:'\f00c';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  color:var(--em);
  font-size:.65rem;
  flex-shrink:0;
}
.site-modern .plan-card--feat .plan-card__feats li{
  color:rgba(255,255,255,.78);
}
.site-modern .plan-card--feat .plan-card__feats li::before{
  color:#6ee7b7;
}
.site-modern .plan-card .btn-full{
  margin-top:auto;
  width:100%;
}

/* ── TESTIMONIALS ── */
.site-modern .testi-card{
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,.07);
  box-shadow:var(--shadow-sm);
  background:var(--white);
}
.site-modern .testi-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.site-modern .testi-stars{
  display:flex;
  gap:.2rem;
  margin-bottom:1rem;
  color:#FBBF24;
  font-size:.75rem;
}
.site-modern .testi-avatar{
  width:44px;height:44px;
  border-radius:14px;
  font-size:.8rem;
  box-shadow:var(--shadow-sm);
}

/* ── FAQ ── */
.site-modern .faq-shell{
  background:var(--white);
  border:1px solid rgba(15,23,42,.07);
  border-radius:var(--radius-lg);
  padding:.5rem 1.5rem;
  box-shadow:var(--shadow-sm);
}
.site-modern .faq-item:first-child{border-top:none}
.site-modern .faq-toggle{
  border-radius:var(--radius-sm);
  transition:color .2s ease;
}
.site-modern .faq-toggle:hover{color:var(--em)}
.site-modern .faq-icon{
  border-radius:10px;
  width:32px;height:32px;
  background:var(--bg);
  display:flex;align-items:center;justify-content:center;
}
.site-modern .faq-item.open .faq-icon{
  background:var(--em);
  color:var(--white);
  border-color:var(--em);
}
.site-modern .faq-item.open .faq-icon i{transform:rotate(45deg)}
.site-modern .faq-icon i{transition:transform .3s ease;font-size:.75rem}

/* ── CTA & FORM ── */
.site-modern .cta-section{
  background:var(--gradient-cta);
  position:relative;
}
.site-modern .cta-section::before{
  content:'';
  position:absolute;
  width:100%;height:100%;
  top:0;left:0;
  background:radial-gradient(circle at 50% 0%, rgba(5,150,105,.06) 0%, transparent 50%);
  pointer-events:none;
}
.site-modern .cta-section > div{position:relative;z-index:1}
.site-modern .wpp-btn{
  border-radius:999px;
  box-shadow:0 12px 32px rgba(37,211,102,.28);
}
.site-modern .access-form{
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow-md);
  padding:clamp(1.25rem,3vw,2rem);
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
}
.site-modern .access-form__title{
  font-family:var(--font-d);
  font-size:1rem;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:1rem;
  color:var(--dark);
  display:flex;
  align-items:center;
  gap:.5rem;
}
.site-modern .field input,
.site-modern .field select,
.site-modern .field textarea{
  border-radius:var(--radius-sm);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-modern .field input:focus,
.site-modern .field select:focus,
.site-modern .field textarea:focus{
  box-shadow:0 0 0 3px rgba(5,150,105,.12);
}
.site-modern .alert{border-radius:var(--radius-sm)}

/* ── FOOTER ── */
.site-modern .site-footer{
  background:var(--gradient-dark);
  padding:clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,2.5rem) 2rem;
  border-top:1px solid rgba(255,255,255,.06);
}
.site-modern .site-footer__inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  text-align:left;
}
.site-modern .site-footer__brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.site-modern .site-footer__brand img{
  width:36px;height:36px;
  border-radius:10px;
}
.site-modern .site-footer__brand strong{
  display:block;
  color:var(--white);
  font-family:var(--font-d);
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:.82rem;
}
.site-modern .site-footer__brand small{
  color:rgba(255,255,255,.4);
  font-size:.72rem;
}
.site-modern .site-footer__links{
  display:flex;
  gap:1.25rem;
  flex-wrap:wrap;
}
.site-modern .site-footer__links a{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
  transition:color .2s ease;
}
.site-modern .site-footer__links a:hover{color:var(--em)}
.site-modern .site-footer__copy{
  width:100%;
  text-align:center;
  padding-top:1.5rem;
  margin-top:.5rem;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:.72rem;
  color:rgba(255,255,255,.35);
}

/* ── BTT ── */
.site-modern #btt{
  width:48px;height:48px;
  border-radius:14px;
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(8px);
  bottom:max(1.75rem,var(--safe-bottom));
  right:max(1.75rem,var(--safe-right));
}

/* Layout helpers */
.site-modern .section-inner--narrow{max-width:820px;margin:0 auto}
.site-modern .section-inner--cta{max-width:960px;margin:0 auto}
.site-modern .cta-lead{font-size:clamp(.92rem,2.5vw,1.05rem);color:var(--muted);max-width:480px;margin:0 auto;line-height:1.85}
.site-modern .cta-form-wrap{margin-top:clamp(1.5rem,4vw,2.5rem);max-width:520px;margin-left:auto;margin-right:auto;width:100%}
.site-modern .faq-shell{padding:clamp(.35rem,2vw,.5rem) clamp(.85rem,3vw,1.5rem)}

@media(max-width:768px){
  .site-modern{--nav-h:68px}
  .site-modern .plan-card--feat{transform:none}
  .site-modern .plan-card--feat:hover{transform:translateY(-4px)}
  .site-modern .site-footer__inner{flex-direction:column;text-align:center}
  .site-modern .site-footer__links{justify-content:center}
  .site-modern .hero-wrap::before{width:260px;height:260px;top:-80px;right:-60px}
  .site-modern .hero-wrap::after{width:200px;height:200px}
  .site-modern .manifesto-section::before{width:280px;height:280px}
  .site-modern .access-form{width:100%}
  .site-modern .faq-toggle{align-items:flex-start;gap:.75rem}
  .site-modern .faq-icon{flex-shrink:0;margin-top:.15rem}
}

@media(max-width:480px){
  .site-modern{--nav-h:64px}
  .site-modern #btt{width:44px;height:44px;bottom:max(1rem,var(--safe-bottom));right:max(1rem,var(--safe-right))}
  .site-modern .card{padding:clamp(1.15rem,4vw,1.75rem)}
  .site-modern .testi-card{padding:clamp(1.15rem,4vw,2rem)}
  .site-modern .plan-card{padding:clamp(1.15rem,4vw,2rem)}
  .site-modern .site-footer{padding-left:max(1rem,var(--safe-left));padding-right:max(1rem,var(--safe-right))}
  .site-modern .site-footer__brand{flex-direction:column;text-align:center}
  .site-modern .site-footer__links{gap:.85rem}
}

@media(max-width:360px){
  .site-modern .hero__pre{flex-wrap:wrap}
  .site-modern .cta-form-wrap{margin-top:1.25rem}
}

@media(prefers-reduced-motion:reduce){
  .site-modern .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}
