*{box-sizing:border-box;margin:0;padding:0}

:root{
  --brand-blue:#132F3D;
  --brand-blue-rgb:19,47,61;
  --bg-dark:#0a0f1c;
  --bg-navy:rgba(var(--brand-blue-rgb),0.92);
  --accent:#f39a1d;
  --accent-strong:#ff6f14;
  --text:#111;
  --text-soft:#666;
  --surface:#ffffff;
  --surface-alt:#f5f3ef;
  --border:#e8e4de;
  --product-dark:var(--brand-blue);
  /* Hero lock: adjust only when intentionally editing the first section. */
  --hero-min-height:780px;
  --hero-padding-top:72px;
  --hero-padding-sides:40px;
  --hero-padding-bottom:92px;
  --hero-bg-position-desktop:center 18%;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  background:var(--bg-dark);
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg-dark);
  color:var(--text);
  overflow-x:hidden;
  min-height:100vh;
  position:relative;
}

.navbar{
  width:min(940px,calc(100% - 220px));
  max-width:100%;
  margin:10px auto 0;
  padding:7px 12px 7px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  background:linear-gradient(180deg,rgba(var(--brand-blue-rgb),.96) 0%,rgba(var(--brand-blue-rgb),.96) 100%);
  border:1px solid rgba(237,155,45,0.82);
  border-radius:999px;
  position:relative;
  z-index:8;
  box-shadow:0 16px 34px rgba(0,0,0,0.2);
}

.nav-brand{display:flex;align-items:center}
.nav-logo{display:block;height:auto;object-fit:contain}
.nav-logo-desktop{width:210px;max-width:25vw}
.nav-logo-mobile{display:none;width:40px}
.nav-toggle{display:none}
.nav-right,.nav-menu,.nav-actions{display:flex;align-items:center}
.nav-right{gap:6px;flex:1;justify-content:flex-end}
.nav-menu{gap:14px;justify-content:center;flex:1}
.nav-actions{gap:6px}
.nav-link{color:#fff;font-size:12px;font-weight:800;text-decoration:none;opacity:.96;transition:.2s}
.nav-link:hover{color:var(--accent);opacity:1}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:3px;
  padding:2px;
  background:rgba(255,255,255,.12);
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  min-width:80px;
  justify-content:space-between;
}

.lang-btn{
  min-width:34px;
  padding:6px 6px;
  font-size:10px;
  font-weight:800;
  border:none;
  border-radius:999px;
  background:transparent;
  color:rgba(255,255,255,.82);
  cursor:pointer;
  transition:.18s;
}

.lang-btn.active{background:#fff;color:var(--brand-blue)}

.nav-toggle{
  width:52px;
  height:52px;
  border:none;
  border-radius:999px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--brand-blue);
  border-radius:999px;
  transition:transform .2s ease, opacity .2s ease;
}

.hero-contact{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:128px;
  padding:8px 13px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff7d16,#ff5d0d);
  color:#fff;
  font-size:10px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .2s, box-shadow .2s;
}

.hero-contact:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(255,109,28,.28)}

.hero{
  position:relative;
  min-height:var(--hero-min-height);
  margin-top:-64px;
  padding:var(--hero-padding-top) var(--hero-padding-sides) 80px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-color:var(--brand-blue);
  background-image:
    linear-gradient(180deg,rgba(2,8,20,.26) 0%,rgba(2,8,20,.52) 34%,rgba(2,8,20,.72) 100%),
    linear-gradient(90deg,rgba(2,8,20,.6) 0%,rgba(2,8,20,.2) 42%,rgba(2,8,20,.38) 100%),
    url('../assets/hero-bg.png?v=20260328-1434');
  background-position:var(--hero-bg-position-desktop);
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
  will-change:background-image;
  border-bottom:none;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(10,15,28,.82) 0%,rgba(10,15,28,.46) 16%,rgba(10,15,28,.12) 30%,rgba(10,15,28,0) 40%),
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.1),transparent 22%),
    radial-gradient(circle at 18% 76%,rgba(228,30,30,.08),transparent 22%),
    radial-gradient(circle at 78% 26%,rgba(243,154,29,.08),transparent 18%);
  pointer-events:none;
}

.hero::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  background:linear-gradient(180deg,rgba(7,12,24,0) 0%,rgba(7,12,24,.72) 72%,rgba(7,12,24,.94) 100%);
  pointer-events:none;
}

.hero-content{position:relative;z-index:2;max-width:980px}
.hero-content{
  width:min(860px,calc(100% - 48px));
  opacity:0;
  transform:translateY(32px);
  animation:heroRise 1.15s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  letter-spacing:.28em;
  color:#efb04b;
  font-weight:600;
  margin-bottom:14px;
  text-transform:uppercase;
  text-shadow:0 3px 10px rgba(0,0,0,.22);
}
.hero-eyebrow::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:#e8920a;
  flex:0 0 8px;
}
.hero-title{
  font-family:'Inter',sans-serif;
  font-size:clamp(2.5rem,4.8vw,4.5rem);
  line-height:1.02;
  letter-spacing:-.035em;
  color:#fff;
  margin:0 auto 20px;
  max-width:820px;
  text-transform:none;
  text-shadow:0 8px 18px rgba(0,0,0,.22);
  font-weight:700;
}

.hero-sub{
  max-width:720px;
  margin:0 auto 34px;
  font-size:18px;
  color:rgba(255,255,255,.88);
  font-weight:500;
  line-height:1.55;
}

.hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:390px;
  padding:20px 34px;
  border:1px solid rgba(243,154,29,.9);
  background:rgba(18,25,41,.2);
  backdrop-filter:blur(4px);
  color:#fff;
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  clip-path:polygon(0 0,92% 0,100% 50%,92% 100%,0 100%,0 0);
  transition:color .25s, transform .25s, box-shadow .25s;
}

.hero-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#f39a1d 0%,#ff7a12 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .28s ease;
  z-index:-1;
}

.hero-cta:hover{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(243,154,29,.22);
}

.hero-cta:hover::before{transform:scaleX(1)}

.hero-highlights{
  position:relative;
  z-index:10;
  margin-top:-44px;
  margin-bottom:-104px;
  padding:0 40px;
  background:transparent;
  pointer-events:none;
}
.hero-highlights-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:840px;
  margin:0 auto;
  transform:translateY(-50px);
  align-items:start;
  pointer-events:auto;
}
.hero-highlight-card{
  --card-rest-y:0px;
  background:
    linear-gradient(180deg,rgba(255,248,238,.98) 0%,rgba(255,244,228,.98) 100%);
  border:.5px solid rgba(232,146,10,.22);
  border-radius:16px;
  padding:1.55rem 1.4rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
  box-shadow:
    0 16px 28px rgba(25,20,10,.12),
    0 28px 50px rgba(25,20,10,.14);
  position:relative;
  opacity:0;
  transform:translateY(calc(var(--card-rest-y) + 26px));
  transition:
    opacity .7s cubic-bezier(.22,1,.36,1),
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}
.hero-highlight-card:nth-child(1){transition-delay:.08s}
.hero-highlight-card:nth-child(2){transition-delay:.18s}
.hero-highlight-card:nth-child(3){transition-delay:.28s}
.hero-highlight-card:nth-child(1),
.hero-highlight-card:nth-child(3){
  margin-top:22px;
  z-index:1;
}
.hero-highlight-card:nth-child(1){
  --card-rest-y:22px;
  margin-right:-12px;
}
.hero-highlight-card:nth-child(2){
  --card-rest-y:-14px;
  z-index:2;
  box-shadow:
    0 18px 32px rgba(25,20,10,.14),
    0 34px 60px rgba(25,20,10,.18);
}
.hero-highlight-card.is-visible{
  opacity:1;
  transform:translateY(var(--card-rest-y));
}
.hero-highlight-card:hover{
  transform:translateY(calc(var(--card-rest-y) - 6px));
  border-color:rgba(232,146,10,.38);
  box-shadow:
    0 22px 36px rgba(25,20,10,.16),
    0 34px 60px rgba(25,20,10,.2);
}
.hero-highlight-card:nth-child(3){
  --card-rest-y:22px;
  margin-left:-12px;
}
.hero-highlight-icon{
  width:auto;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  border-radius:0;
  box-shadow:none;
}
.hero-highlight-icon img{
  width:88px;
  height:88px;
  object-fit:contain;
  display:block;
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(1010%) hue-rotate(358deg) brightness(97%) contrast(93%);
  transition:transform .28s ease, filter .28s ease;
}
.hero-highlight-card:hover .hero-highlight-icon img{
  transform:scale(1.06);
}
.hero-highlight-title{
  font-size:14px;
  font-weight:700;
  color:#3b2410;
}

.scroll-reveal{
  opacity:0;
  transform:translateY(28px) scale(0.995);
  transition:
    opacity .9s cubic-bezier(.16,.84,.24,1),
    transform .9s cubic-bezier(.16,.84,.24,1),
    filter .9s cubic-bezier(.16,.84,.24,1);
  will-change:opacity,transform,filter;
}

.scroll-reveal.is-revealed{
  opacity:1;
  transform:translateY(0) scale(1);
}

.reveal-up-soft{transform:translateY(18px)}
.reveal-up-strong{transform:translateY(44px)}
.reveal-left{transform:translateX(-40px)}
.reveal-right{transform:translateX(40px)}
.reveal-zoom{transform:translateY(18px) scale(.975)}
.reveal-tilt-left{transform:translateY(22px) rotate(-2deg) scale(.985);transform-origin:left bottom}
.reveal-tilt-right{transform:translateY(22px) rotate(2deg) scale(.985);transform-origin:right bottom}
.reveal-blur{
  transform:translateY(22px) scale(.99);
  filter:blur(8px);
  transition:
    opacity .9s cubic-bezier(.16,.84,.24,1),
    transform .9s cubic-bezier(.16,.84,.24,1),
    filter .9s cubic-bezier(.16,.84,.24,1);
}

/* softened combined reveal for a subtle pop */
.reveal-fade-scale{transform:translateY(18px) scale(.985);}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .hero-content,
  .hero-highlight-card,
  .about-photo,
  .about-card{
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.scroll-reveal-delay-1{transition-delay:.08s}
.scroll-reveal-delay-2{transition-delay:.16s}
.scroll-reveal-delay-3{transition-delay:.24s}
.scroll-reveal-delay-4{transition-delay:.32s}

.scroll-reveal.is-revealed.reveal-blur{filter:blur(0)}

@keyframes heroRise{
  from{
    opacity:0;
    transform:translateY(32px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.about,.team-band,.results,.sec-header,.products,.yt-band,.footer{background:var(--surface-alt)}
.faq-section{background:var(--surface)}
.about,.results{padding:56px 40px;border-bottom:1px solid var(--border)}
.about{
  position:relative;
  margin-top:-24px;
  padding-top:80px;
  background:
    linear-gradient(180deg,rgba(7,12,24,.18) 0%,rgba(245,243,239,.22) 12%,rgba(245,243,239,.48) 100%),
    url('../assets/textura-seção-about.jpg') center top/contain repeat;
}
.about::before{
  content:'';
  position:absolute;
  left:50%;
  top:-56px;
  width:min(250px,28vw);
  height:56px;
  transform:translateX(-50%);
  background:
    linear-gradient(180deg,rgba(245,243,239,.34),rgba(245,243,239,.48)),
    url('../assets/textura-seÃ§Ã£o-about.jpg') center top/contain repeat;
  clip-path:polygon(0 0,100% 0,76% 100%,24% 100%);
  z-index:2;
}
.about::after{
  content:'';
  position:absolute;
  left:50%;
  top:-66px;
  width:min(310px,34vw);
  height:72px;
  transform:translateX(-50%);
  background:linear-gradient(180deg,rgba(7,12,24,.28),rgba(7,12,24,0));
  clip-path:polygon(0 0,100% 0,79% 100%,21% 100%);
  z-index:1;
  pointer-events:none;
}
.about-shell{
  max-width:980px;
  margin:0 auto;
  position:relative;
  overflow:visible;
}
.about::before,
.about::after{
  content:none !important;
}
.about::before,
.about::after{
  content:none;
}
.about-outline-name{
  position:absolute;
  left:-42px;
  top:-18px;
  bottom:0;
  width:56px;
  z-index:0;
  color:transparent;
  -webkit-text-stroke:.8px var(--brand-blue);
  font-family:'Bebas Neue',sans-serif;
  font-size:68px;
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
  letter-spacing:.06em;
  opacity:.25;
  writing-mode:vertical-rl;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(-180deg);
  overflow:hidden;
  pointer-events:none;
}

.about-outline-name.scroll-reveal{
  opacity:0;
  transform:rotate(-180deg) translateX(-54px);
}

.about-outline-name.scroll-reveal.is-revealed{
  opacity:.25;
  transform:rotate(-180deg) translateX(0);
}

.about-card{
  display:grid;
  grid-template-columns:minmax(280px,360px) minmax(0,1fr);
  gap:0;
  align-items:stretch;
  background:var(--brand-blue);
  border:1px solid rgba(243,154,29,.18);
  border-radius:22px;
  box-shadow:0 16px 32px rgba(0,0,0,.14);
  overflow:visible;
  position:relative;
  z-index:1;
}
.about-media{
  display:block;
  min-height:100%;
  position:relative;
  overflow:hidden;
  border-radius:22px 0 0 22px;
  box-shadow:-18px 0 28px rgba(0,0,0,.18);
}
.about-media::after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:96px;
  background:linear-gradient(90deg,rgba(var(--brand-blue-rgb),0) 0%,rgba(var(--brand-blue-rgb),.16) 24%,rgba(var(--brand-blue-rgb),.38) 50%,rgba(var(--brand-blue-rgb),.68) 76%,rgba(var(--brand-blue-rgb),.94) 100%);
  pointer-events:none;
  z-index:4;
}
.about-photo{
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-size:cover;
  opacity:0;
  z-index:3;
  border-radius:22px 0 0 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    0 18px 36px rgba(0,0,0,.22);
}
.about-photo-01{
  background-image:
    linear-gradient(180deg,rgba(var(--brand-blue-rgb),.04),rgba(var(--brand-blue-rgb),.16)),
    url('../assets/foto-about-01.jpg');
  background-position:center top;
  animation:aboutPhotoSwapA 10s ease-in-out infinite;
}
.about-photo-02{
  background-image:
    linear-gradient(180deg,rgba(var(--brand-blue-rgb),.04),rgba(var(--brand-blue-rgb),.16)),
    url('../assets/foto-about-02.JPG');
  background-position:center top;
  animation:aboutPhotoSwapB 10s ease-in-out infinite;
}
.about-copy{
  color:#fff;
  padding:28px 28px 28px 30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

@keyframes aboutPhotoSwapA{
  0%{opacity:1}
  42%{opacity:1}
  50%{opacity:0}
  92%{opacity:0}
  100%{opacity:1}
}

@keyframes aboutPhotoSwapB{
  0%{opacity:0}
  42%{opacity:0}
  50%{opacity:1}
  92%{opacity:1}
  100%{opacity:0}
}
.about-role{
  margin:0 0 18px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:600;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.team-band{
  padding:48px 36px;
  background:#f0ede6;
  border-bottom:1px solid #e8e4de;
}
.team-shell{
  max-width:620px;
  margin:0 auto;
  text-align:center;
  font-family:'Inter',sans-serif;
}
.team-shell .sec-tag{
  font-size:10px;
  letter-spacing:.18em;
  color:#d4870e;
  margin:0 0 10px;
}
.team-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:44px;
  font-weight:400;
  letter-spacing:.02em;
  color:#1a1a18;
  text-transform:uppercase;
  margin:0 0 10px;
  line-height:1;
}
.team-text{
  max-width:400px;
  margin:0 auto 32px;
  font-size:13px;
  line-height:1.6;
  color:#888880;
  font-weight:300;
  font-style:italic;
}
.team-grid{
  display:flex;
  justify-content:center;
}
.team-card{
  width:100%;
  max-width:620px;
  text-align:left;
  background:#fff;
  border-radius:16px;
  border:.5px solid #ddd9d0;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:0;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.team-card:hover{
  border-color:#d4870e;
  box-shadow:0 4px 24px rgba(212,135,14,.08);
}
.team-card-left{
  min-width:188px;
  flex:0 0 188px;
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  align-self:stretch;
  border-right:.5px solid #ede9e0;
  background:#faf8f4;
}
.team-avatar{
  width:104px;
  height:104px;
  padding:2px;
  border-radius:50%;
  background:linear-gradient(135deg,#f0a830,#d4870e);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.team-avatar-placeholder{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Inter',sans-serif;
  font-size:18px;
  font-weight:800;
  color:#d4870e;
}
.team-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:50%;
}
.team-badge{
  display:inline-block;
  font-size:9px;
  letter-spacing:.12em;
  padding:3px 8px;
  border-radius:5px;
  border:.5px solid #ddd9d0;
  background:#f0ede6;
  color:#888880;
  text-transform:uppercase;
}
.team-name{
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  color:#1a1a18;
  line-height:1.3;
  margin:0;
  text-align:center;
}
.team-role{
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#d4870e;
  margin:0;
  text-align:center;
}
.team-card-right{
  flex:1;
  padding:24px 28px;
}
.team-credential{
  font-size:11px;
  color:#aaa9a0;
  margin:0 0 10px;
  font-weight:300;
}
.team-bio{
  font-size:13px;
  line-height:1.65;
  color:#555550;
  font-weight:300;
  margin:0 0 16px;
  text-align:left;
}
.team-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.team-tag-pill{
  font-size:9px;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:4px 9px;
  border-radius:5px;
  border:.5px solid #ddd9d0;
  color:#888880;
  transition:border-color .2s ease,color .2s ease;
  cursor:default;
}
.team-tag-pill:hover{border-color:#d4870e;color:#d4870e}
.results{
  background:#111116;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.results-shell{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}
.vsl-section{
  position:relative;
  margin-top:-74px;
  padding:200px 40px 42px;
  background:
    linear-gradient(180deg,rgba(var(--brand-blue-rgb),.98) 0%,rgba(var(--brand-blue-rgb),.97) 14%,rgba(var(--brand-blue-rgb),.9) 30%,rgba(var(--brand-blue-rgb),.7) 82%,rgba(var(--brand-blue-rgb),.34) 100%),
    url('../assets/hero-bg-02.png') center/cover no-repeat;
  border-bottom:none;
}
.vsl-section::before{
  content:none;
}
.vsl-shell{
  max-width:980px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:1;
}
.vsl-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:34px;
  letter-spacing:.02em;
  color:#fff;
  margin-bottom:10px;
}
.vsl-text{
  max-width:700px;
  margin:0 auto 22px;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}
.vsl-video{
  width:min(100%,660px);
  aspect-ratio:16 / 9;
  background:#111;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(243,154,29,.22);
  box-shadow:0 20px 36px rgba(0,0,0,.12);
  margin:0 auto 18px;
}
.vsl-placeholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:
    linear-gradient(180deg,rgba(var(--brand-blue-rgb),.72),rgba(var(--brand-blue-rgb),.86)),
    radial-gradient(circle at center,rgba(243,154,29,.14),transparent 40%);
  color:#fff;
  text-align:center;
  padding:24px;
}
.vsl-placeholder p{
  font-size:20px;
  font-weight:700;
}
.vsl-placeholder small{
  font-size:13px;
  color:rgba(255,255,255,.64);
}
.vsl-play{
  width:78px;
  height:78px;
  border-radius:999px;
  background:linear-gradient(135deg,#f39a1d,#ff7a12);
  position:relative;
  box-shadow:0 12px 24px rgba(243,154,29,.24);
}
.vsl-play::before{
  content:'';
  position:absolute;
  left:32px;
  top:24px;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  border-left:22px solid #fff;
}
.vsl-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  min-width:320px;
  padding:0 26px;
  border:1px solid rgba(243,154,29,.92);
  background:rgba(14,20,34,.78);
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  clip-path:polygon(0 0,92% 0,100% 50%,92% 100%,0 100%,0 0);
  box-shadow:
    0 0 0 1px rgba(243,154,29,.24),
    0 0 24px rgba(243,154,29,.3),
    0 10px 24px rgba(0,0,0,.18);
  transition:color .25s, transform .25s, box-shadow .25s, background .25s;
}

.vsl-cta:hover{
  transform:translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(243,154,29,.34),
    0 0 36px rgba(243,154,29,.42),
    0 12px 26px rgba(0,0,0,.22);
}

.vsl-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#f39a1d 0%,#ff7a12 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .28s ease;
  z-index:-1;
}

.vsl-cta:hover::before{transform:scaleX(1)}
.sec-tag{font-size:10px;letter-spacing:.24em;color:#e8920a;font-weight:700;margin-bottom:8px}
.about-name,.results-title,.sec-title,.yt-title-text,.form-title{
  font-family:'Bebas Neue',sans-serif;
  letter-spacing:.03em;
}

.about-name{font-size:42px;color:#fff;margin-bottom:12px;line-height:1.02}
.orange-line{width:44px;height:3px;background:#e8920a;margin-bottom:20px}
.about-text,.results-text{font-size:14px;line-height:1.85;color:var(--text-soft);max-width:720px}
.about-text{margin-bottom:14px;color:rgba(255,255,255,.78);max-width:100%}
.results-title{font-size:34px;color:#fff;margin-bottom:8px}
.results-text{
  font-size:13px;
  color:#666;
  margin:0 auto 32px;
}

.results-carousel{padding:0 32px 6px}

.results-viewport{
  overflow:hidden;
}

.results-track{
  display:flex;
  gap:16px;
  transition:transform .35s ease;
  will-change:transform;
}

.result-card{
  flex:0 0 280px;
  width:280px;
  padding:0;
  border-radius:14px;
  background:#1a1a22;
  border:.5px solid #2a2a35;
  overflow:hidden;
}

.result-compare{
  position:relative;
  height:340px;
  overflow:hidden;
  background:#12121a;
  cursor:ew-resize;
  user-select:none;
}

.result-image{
  position:absolute;
  inset:0;
}

.result-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.result-image-before{
  z-index:2;
  overflow:hidden;
}

.result-divider{
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  width:2px;
  z-index:4;
  pointer-events:none;
  background:#fff;
}

.result-handle{
  position:absolute;
  right:-18px;
  top:50%;
  width:34px;
  height:34px;
  transform:translateY(-50%);
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 22px rgba(0,0,0,.24);
}

.result-handle::before,
.result-handle::after{
  content:'';
  position:absolute;
  top:50%;
  width:0;
  height:0;
  transform:translateY(-50%);
  border-top:4px solid transparent;
  border-bottom:4px solid transparent;
}

.result-handle::before{
  left:8px;
  border-right:6px solid #111;
}

.result-handle::after{
  right:8px;
  border-left:6px solid #111;
}

.result-slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  opacity:0;
  cursor:ew-resize;
  z-index:5;
}

.result-labels{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 14px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.result-label-before{color:#E07A2F}
.result-label-after{color:#4caf7a}

.results-nav-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-top:24px;
}

.results-nav-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.results-nav{
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:#f2ede4;
  color:#111116;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease, opacity .2s ease;
}

.results-nav:hover{
  transform:translateY(-1px);
  background:#fff7ec;
}

.results-nav:disabled{
  opacity:1;
  cursor:default;
  transform:none;
  background:#181820;
  box-shadow:none;
}

.results-nav-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.results-nav-icon svg{
  width:20px;
  height:20px;
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.results-nav:disabled .results-nav-icon{
  color:#2a2a34;
}

.results-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  align-items:center;
}

.results-swipe-hint{
  display:none;
  font-size:13px;
  color:#4d4d57;
  line-height:1;
}

.results-dot{
  width:6px;
  height:6px;
  border:none;
  border-radius:50%;
  background:#3a3a42;
  cursor:pointer;
  transition:background .2s ease, width .2s ease, border-radius .2s ease;
}

.results-dot.is-active{
  background:#E07A2F;
  width:18px;
  border-radius:3px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  width:100%;
  max-width:100%;
  margin-top:16px;
}

.stat{
  width:100%;
  min-width:0;
  min-height:100px;
  padding:14px 16px;
  text-align:left;
  border:1px solid rgba(243,154,29,.16);
  border-radius:12px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 10px 24px rgba(0,0,0,.14);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.stat:hover{
  transform:translateY(-2px);
  border-color:rgba(243,154,29,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 28px rgba(0,0,0,.18);
}
.stat-n{
  font-family:'Inter',sans-serif;
  font-size:22px;
  color:var(--accent);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.03em;
}
.stat-l{
  font-size:11px;
  color:rgba(255,255,255,.68);
  letter-spacing:0;
  margin-top:5px;
  font-weight:500;
  line-height:1.45;
}
.about-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:48px;
  min-width:320px;
  padding:0 26px;
  margin-top:16px;
  border:1px solid rgba(243,154,29,.92);
  background:rgba(14,20,34,.78);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  clip-path:polygon(0 0,92% 0,100% 50%,92% 100%,0 100%,0 0);
  box-shadow:
    0 0 0 1px rgba(243,154,29,.24),
    0 0 24px rgba(243,154,29,.3),
    0 10px 24px rgba(0,0,0,.18);
  transition:color .25s, transform .25s, box-shadow .25s, background .25s;
}
.about-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#f39a1d 0%,#ff7a12 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .28s ease;
  z-index:-1;
}
.about-cta:hover{
  transform:translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(243,154,29,.34),
    0 0 36px rgba(243,154,29,.42),
    0 12px 26px rgba(0,0,0,.22);
}
.about-cta:hover::before{transform:scaleX(1)}

.sec-header{
  padding:64px 60px 48px;
  text-align:center;
  background:var(--surface-alt);
}

.sec-header .sec-tag{
  margin-bottom:10px;
  letter-spacing:.26em;
}

.sec-title{
  font-size:44px;
  color:#111;
  line-height:1;
  letter-spacing:.02em;
  margin:0 auto 10px;
}

#prod-title{
  display:flex;
  flex-direction:column;
  align-items:center;
  white-space:normal;
}

.sec-title-desktop-lines,
.sec-title-mobile-lines{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.sec-title-mobile-lines{display:none}

.sec-title .sec-title-accent{color:#e8920a}

.sec-sub{
  max-width:480px;
  margin:0 auto;
  font-size:14px;
  color:#888;
  line-height:1.7;
}

.products{
  padding:0;
  background:var(--surface-alt);
  border-bottom:1px solid var(--border);
}

.products-shell{
  width:100%;
  max-width:none;
  margin:0;
}

.prod-row{
  display:flex;
  align-items:stretch;
  min-height:460px;
  border-top:1px solid var(--border);
  background:var(--surface-alt);
}

.prod-row.reverse{flex-direction:row-reverse}
.prod-row-muted{opacity:.68}
.prod-row-dark{
  border-top-color:rgba(243,154,29,.18);
  background:var(--product-dark);
}

.prod-image{
  flex:1 1 0;
  min-height:380px;
  position:relative;
  overflow:hidden;
  background:#1a1a1a;
}

.prod-image::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 48%,rgba(255,255,255,.12),transparent 35%);
  z-index:0;
}

.bg-dietsolver{background:var(--brand-blue)}
.bg-vacuum{background:linear-gradient(135deg,#1a0a00 0%,#2a1500 100%)}
.bg-planos{background:#132F3D}
.bg-planos::before{display:none}
.bg-mentoria{background:linear-gradient(135deg,#111 0%,#1a1a1a 100%)}

.prod-image-cover{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.prod-image-contain .prod-image-cover{
  top:50%;
  right:auto;
  bottom:auto;
  left:50%;
  width:84%;
  height:84%;
  object-fit:contain;
  transform:translate(-50%,-50%);
  filter:drop-shadow(0 26px 32px rgba(0,0,0,.38));
}

.prod-image-diet-solver{object-position:60% center}
.prod-image-vacuum-campeao{object-position:center center}
.prod-image-planos{
  inset:-1px;
  width:calc(100% + 2px);
  height:calc(100% + 2px);
  object-fit:contain;
  object-position:center center;
  transform:none;
}
.prod-image-mentoria{object-position:center center}

.prod-image-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(to right,transparent 60%,var(--surface-alt) 100%);
  pointer-events:none;
}

.prod-row.reverse .prod-image-overlay{
  background:linear-gradient(to left,transparent 60%,var(--surface-alt) 100%);
}

.prod-row-dark .prod-image-overlay{
  background:linear-gradient(to right,transparent 60%,var(--product-dark) 100%);
}

.prod-row-dark.reverse .prod-image-overlay{
  background:linear-gradient(to left,transparent 60%,var(--product-dark) 100%);
}

.prod-img-badge{
  position:absolute;
  top:20px;
  left:20px;
  z-index:3;
  background:#e8920a;
  color:#fff;
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em;
  padding:5px 12px;
  border-radius:20px;
}

.prod-row.reverse .prod-img-badge{
  left:auto;
  right:20px;
}

.prod-img-badge-muted{background:#555}

.prod-content{
  flex:1 1 0;
  padding:56px 60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:var(--surface-alt);
}

.prod-row-dark .prod-content{
  background:var(--product-dark);
}

.prod-tag{
  font-size:10px;
  letter-spacing:.24em;
  color:#e8920a;
  font-weight:700;
  margin-bottom:10px;
}

.prod-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:48px;
  letter-spacing:.02em;
  color:#111;
  line-height:1;
  margin:0 0 6px;
  text-transform:uppercase;
  white-space:pre-line;
}

.prod-title-desktop-lines,
.prod-title-mobile-lines{
  display:flex;
  flex-direction:column;
}

.prod-title-mobile-lines{
  display:none;
}

.prod-row-dark .prod-title{
  color:#fff;
}

.prod-subtitle{
  font-size:13px;
  color:#bbb;
  letter-spacing:.08em;
  font-weight:600;
  margin:0 0 18px;
}

.prod-row-dark .prod-subtitle{
  color:rgba(255,255,255,.48);
}

.prod-divider{
  width:40px;
  height:3px;
  background:#e8920a;
  margin-bottom:20px;
}

.prod-divider-muted{background:#ccc}

.prod-desc{
  font-size:14px;
  color:#666;
  line-height:1.8;
  margin:0 0 28px;
  max-width:420px;
}

.prod-row-dark .prod-desc{
  color:rgba(255,255,255,.72);
}

.prod-features{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:28px;
}

.prod-feat{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:#555;
  font-weight:500;
  line-height:1.45;
}

.prod-row-dark .prod-feat{
  color:rgba(255,255,255,.76);
}

.prod-feat-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#e8920a;
  flex:0 0 6px;
}

.prod-cta-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.prod-btn-primary,
.prod-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-height:44px;
  padding:13px 28px;
  border-radius:6px;
  font-family:'Inter',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s,color .2s,opacity .2s,transform .2s;
}

.prod-btn-primary{
  background:#e8920a;
  color:#fff;
  border:1px solid #e8920a;
}

.prod-btn-primary:hover{
  opacity:.88;
  transform:translateY(-1px);
}

.prod-btn-secondary{
  background:transparent;
  color:#e8920a;
  border:1px solid #e8920a;
}

.prod-btn-secondary:hover{
  background:#e8920a;
  color:#fff;
}

.prod-price{
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  color:#111;
  letter-spacing:.02em;
}

.prod-price span{
  margin-left:4px;
  font-family:'Inter',sans-serif;
  font-size:14px;
  color:#bbb;
  font-weight:500;
  letter-spacing:.04em;
}

.fsubmit{
  font-family:'Inter',sans-serif;
  font-weight:700;
}

.consultoria-online{
  padding:56px 40px;
  background:#f8f5f0;
  border-bottom:1px solid #e8e4de;
}

.consultoria-shell{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.consultoria-title{
  max-width:760px;
  margin:16px auto 10px;
  font-family:'Bebas Neue',sans-serif;
  font-size:40px;
  line-height:1.05;
  letter-spacing:.02em;
  color:var(--brand-blue);
  text-transform:uppercase;
}

.consultoria-intro{
  max-width:520px;
  margin:0 auto 48px;
  color:rgba(var(--brand-blue-rgb),.72);
  font-size:14px;
  line-height:1.7;
}

.consultoria-tabs{
  display:none;
}

.consultoria-title span{
  color:#E07A2F;
}

.consultoria-title #co-title{
  color:var(--brand-blue);
}

.consultoria-cards{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:32px;
}

.consultoria-card-wrap{
  width:300px;
  max-width:100%;
}

.consultoria-card{
  width:300px;
  background:#fff;
  border-radius:14px;
  border:1px solid #e8e4de;
  overflow:hidden;
  text-align:left;
  transition:border-color .2s;
}

.consultoria-card:hover{
  border-color:#E07A2F;
}

.consultoria-card-header{
  padding:20px 24px 18px;
  border-bottom:1px solid #f0ede8;
}

.consultoria-card-badge{
  display:inline-block;
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em;
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:10px;
}

.consultoria-card-gold .consultoria-card-badge{
  background:#fff8f0;
  color:#E07A2F;
}

.consultoria-card-premium .consultoria-card-badge{
  background:var(--brand-blue);
  color:#E07A2F;
}

.consultoria-card-name{
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  letter-spacing:.03em;
  color:var(--brand-blue);
  margin-bottom:4px;
  text-transform:uppercase;
}

.consultoria-card-desc{
  font-size:12px;
  color:rgba(var(--brand-blue-rgb),.72);
  line-height:1.6;
}

.consultoria-card-body{
  padding:20px 24px;
}

.consultoria-feature-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.consultoria-feature{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  color:rgba(var(--brand-blue-rgb),.78);
  line-height:1.5;
}

.consultoria-feature-check{
  width:16px;
  height:16px;
  border-radius:50%;
  background:#fff8f0;
  border:1px solid rgba(232,146,10,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:1px;
}

.consultoria-feature-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#E07A2F;
}

.consultoria-card-premium{
  border:2px solid var(--brand-blue);
  border-top:none;
  border-radius:0 0 14px 14px;
}

.consultoria-premium-tag{
  display:block;
  text-align:center;
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  color:#fff;
  background:var(--brand-blue);
  padding:6px;
  border-radius:14px 14px 0 0;
}

.consultoria-card-premium .consultoria-feature-check{
  background:#f5f3ef;
  border-color:rgba(var(--brand-blue-rgb),.15);
}

.consultoria-card-premium .consultoria-feature-dot{
  background:var(--brand-blue);
}

.consultoria-card-cta{
  display:block;
  width:100%;
  padding:13px;
  border-radius:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-align:center;
  text-decoration:none;
  transition:opacity .2s;
}

.consultoria-card-cta:hover{
  opacity:.88;
}

.consultoria-card-gold .consultoria-card-cta{
  background:#E07A2F;
  color:#fff;
}

.consultoria-card-premium .consultoria-card-cta{
  background:var(--brand-blue);
  color:#fff;
}

.consultoria-how{
  background:#fff;
  border-radius:14px;
  border:1px solid #e8e4de;
  padding:28px 32px;
  max-width:640px;
  margin:0 auto;
}

.consultoria-how-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:18px;
  letter-spacing:.04em;
  color:var(--brand-blue);
  margin-bottom:20px;
  text-align:center;
  text-transform:uppercase;
}

.consultoria-steps{
  display:flex;
  gap:0;
  position:relative;
}

.consultoria-step{
  flex:1;
  text-align:center;
  position:relative;
  padding:0 8px;
}

.consultoria-step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:14px;
  right:-4px;
  width:50%;
  height:1px;
  background:#e8e4de;
  z-index:0;
}

.consultoria-step-num{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#E07A2F;
  color:#fff;
  font-size:11px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 8px;
  position:relative;
  z-index:1;
}

.consultoria-step-text{
  font-size:11px;
  color:rgba(var(--brand-blue-rgb),.72);
  line-height:1.5;
  font-weight:500;
}

.consultoria-plans{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:24px;
}

.consultoria-plan{
  padding:22px;
  border:1px solid #e5ddd2;
  border-radius:18px;
  background:#fff;
  text-align:left;
  box-shadow:0 10px 30px rgba(17,17,17,.04);
}

.consultoria-plan-label{
  font-size:11px;
  letter-spacing:.12em;
  font-weight:700;
  color:#E07A2F;
  margin-bottom:10px;
}

.consultoria-plan-text{
  color:#222;
  font-size:15px;
  line-height:1.65;
}

.consultoria-cta{
  display:inline-flex;
  margin-bottom:20px;
}

.consultoria-details{
  max-width:760px;
  margin:0 auto;
  border-top:1px solid #ddd5c8;
  padding-top:18px;
}

.consultoria-summary{
  list-style:none;
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  color:#111;
}

.consultoria-summary::-webkit-details-marker{
  display:none;
}

.consultoria-summary::before{
  content:"▼ ";
  color:#E07A2F;
}

.consultoria-details[open] .consultoria-summary::before{
  content:"▲ ";
}

.consultoria-details-body{
  padding-top:18px;
  text-align:left;
}

.consultoria-details-body p{
  color:#444;
  font-size:15px;
  line-height:1.75;
  margin-bottom:12px;
}

.consultoria-details-body p:last-child{
  margin-bottom:0;
}

.yt-band{
  padding:40px;
  background:#fff;
  border-bottom:1px solid var(--border);
  text-align:center;
}

.yt-title-text{font-size:26px;color:#111;margin-bottom:18px}

.lang-en .yt-band{
  background:var(--brand-blue);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lang-en .yt-title-text{
  color:#fff;
}

.yt-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#cc0000;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  padding:13px 30px;
  border-radius:4px;
  text-decoration:none;
}

.yt-icon{width:22px;height:16px;background:#fff;border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.yt-tri{width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:10px solid #cc0000}

.faq-section{
  padding:72px 40px;
  background:#f0ede8;
  border-bottom:1px solid #e8e4de;
}

.faq-shell{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.faq-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:42px;
  letter-spacing:.02em;
  color:#111;
  margin:0 0 24px;
  line-height:1;
}

.faq-group + .faq-group{
  margin-top:24px;
}

.faq-group{
  text-align:left;
}

.faq-group-label{
  margin-bottom:12px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:#e8920a;
}

.faq-item{
  margin-bottom:10px;
  border:1px solid #e8e4de;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  transition:border-color .2s ease,transform .2s ease;
}

.faq-item:hover{
  border-color:#e8920a;
  transform:translateY(-1px);
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 20px;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  font:inherit;
  font-size:15px;
  font-weight:700;
  color:#111;
}

.faq-arrow{
  flex-shrink:0;
  color:#e8920a;
  transition:transform .2s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow{
  transform:rotate(180deg);
}

.faq-answer{
  padding:0 20px 18px;
  border-top:1px solid #f1ede7;
  font-size:14px;
  line-height:1.75;
  color:#666;
}

.form-band{
  background:#111;
  padding:56px 40px;
  text-align:center;
}

.form-label{font-size:10px;letter-spacing:.24em;color:#e8920a;font-weight:700;margin-bottom:8px}
.form-title{font-size:38px;color:#fff;margin-bottom:6px}
.form-sub{font-size:13px;color:rgba(255,255,255,.38);letter-spacing:.04em;margin-bottom:28px}
.frow{display:flex;gap:12px;max-width:480px;margin:0 auto 12px;flex-wrap:wrap}

.finput{
  flex:1;
  min-width:130px;
  background:#1c1c1c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:6px;
  padding:12px 14px;
  color:#fff;
  font-size:13px;
  outline:none;
}

.finput::placeholder{color:rgba(255,255,255,.22)}
select.finput{color:rgba(255,255,255,.7);cursor:pointer}
select.finput option{background:#1c1c1c;color:#fff}

.fsubmit{
  background:#e8920a;
  color:#fff;
  border:none;
  border-radius:6px;
  padding:15px;
  font-size:13px;
  letter-spacing:.12em;
  cursor:pointer;
  width:100%;
  max-width:480px;
  display:block;
  margin:12px auto 0;
}

.footer{
  background:var(--brand-blue);
  padding:8px 18px;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid rgba(255,255,255,.14);
}

.footer-brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
}

.footer-logo{
  width:110px;
  height:auto;
  display:block;
}

.footer-copy{
  flex:1 1 auto;
  font-size:8px;
  color:rgba(255,255,255,.82);
  letter-spacing:.05em;
  text-align:right;
  line-height:1.2;
}

.lead-popup-overlay{
  position:fixed;
  inset:0;
  z-index:60;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(5,8,14,0.72);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  backdrop-filter:blur(8px);
}

.lead-popup-overlay[hidden]{
  display:none;
}

.lead-popup-overlay.is-visible{
  opacity:1;
  pointer-events:auto;
}

body.lead-popup-open{
  overflow:hidden;
}

.lead-popup-card{
  width:min(380px,100%);
  max-height:calc(100vh - 40px);
  overflow:auto;
  position:relative;
  border-radius:20px;
  background:#111;
  box-shadow:0 36px 100px rgba(0,0,0,0.55);
  transform:translateY(16px) scale(.98);
  transition:transform .22s ease;
}

.lead-popup-overlay.is-visible .lead-popup-card{
  transform:translateY(0) scale(1);
}

.lead-popup-photo{
  width:100%;
  height:260px;
  position:relative;
  overflow:hidden;
  background:#151515;
}

.lead-popup-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.lead-popup-photo-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  background:linear-gradient(to top,#111 0%,rgba(17,17,17,0) 100%);
}

.lead-popup-badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  padding:5px 12px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:9px;
  font-weight:800;
}

.lead-popup-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(0,0,0,0.52);
  color:rgba(255,255,255,0.76);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(4px);
  transition:background .18s ease,color .18s ease;
}

.lead-popup-close:hover,
.lead-popup-close:focus-visible{
  background:rgba(0,0,0,0.74);
  color:#fff;
}

.lead-popup-body{
  padding:28px 28px 24px;
  text-align:center;
  background:#111;
}

.lead-popup-lang-tabs{
  display:flex;
  gap:6px;
  justify-content:center;
  margin-bottom:18px;
}

.lead-popup-lang{
  min-width:44px;
  padding:5px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:transparent;
  color:rgba(255,255,255,0.42);
  font-family:'Inter',sans-serif;
  font-size:10px;
  font-weight:800;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}

.lead-popup-lang.active{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.lead-popup-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:32px;
  font-weight:400;
  color:#fff;
  line-height:1.02;
  margin-bottom:8px;
}

.lead-popup-title em{
  color:var(--accent);
  font-style:normal;
}

.lead-popup-sub{
  font-size:13px;
  color:rgba(255,255,255,0.48);
  line-height:1.65;
  margin:0 0 22px;
}

.lead-popup-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.lead-popup-input{
  width:100%;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  background:#1c1c1c;
  color:#fff;
  padding:14px 20px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  outline:none;
  transition:border-color .18s ease;
}

.lead-popup-input:focus{
  border-color:rgba(243,154,29,0.68);
}

.lead-popup-input::placeholder{
  color:rgba(255,255,255,0.28);
}

.lead-popup-submit{
  width:100%;
  border:none;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  padding:14px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:opacity .18s ease,transform .18s ease;
}

.lead-popup-submit:hover,
.lead-popup-submit:focus-visible{
  opacity:.88;
}

.lead-popup-submit:active{
  transform:translateY(1px);
}

.lead-popup-skip{
  margin-top:14px;
  border:none;
  background:transparent;
  color:rgba(255,255,255,0.28);
  font-family:'Inter',sans-serif;
  font-size:11px;
  cursor:pointer;
  transition:color .18s ease;
}

.lead-popup-skip:hover,
.lead-popup-skip:focus-visible{
  color:rgba(255,255,255,0.52);
}

@media (max-width: 600px){
  .lead-popup-overlay{
    padding:14px;
  }

  .lead-popup-photo{
    height:220px;
  }

  .lead-popup-body{
    padding:24px 22px 22px;
  }

  .lead-popup-title{
    font-size:30px;
  }
}

@keyframes mobileButtonRise{
  from{
    opacity:0;
    transform:translateY(12px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media (max-width: 600px){
  .navbar{
    width:auto !important;
    max-width:none !important;
    min-width:0;
    margin:0 !important;
    padding:9px 16px 8px;
    border-radius:0;
    flex-wrap:nowrap;
    align-items:center;
    gap:0;
    overflow:visible;
    background:linear-gradient(180deg,rgba(var(--brand-blue-rgb),.98) 0%,rgba(var(--brand-blue-rgb),.98) 100%);
    border:none;
    box-shadow:none;
    position:fixed;
    top:0;
    right:0;
    left:0;
    transform:none !important;
    z-index:20;
  }

  .nav-brand{width:auto;justify-content:flex-start}
  .nav-logo-desktop{display:none}
  .nav-logo-mobile{display:block;width:176px;height:auto}
  .nav-toggle{
    display:inline-flex;
    margin-left:auto;
    width:46px;
    height:46px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
  }
  .nav-toggle span{
    width:18px;
    height:2px;
    background:var(--brand-blue);
  }
  .nav-right{
    position:absolute;
    top:calc(100% + 10px);
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:14px;
    background:linear-gradient(180deg,rgba(var(--brand-blue-rgb),.98) 0%,rgba(var(--brand-blue-rgb),.98) 100%);
    border:1px solid rgba(237,155,45,0.82);
    border-radius:22px;
    box-shadow:0 18px 32px rgba(0,0,0,.28);
    z-index:12;
  }
  .navbar.is-open .nav-right{display:flex}
  .nav-menu{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .nav-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    font-size:12px;
    text-align:center;
    padding:0 10px;
    border-radius:16px;
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 10px 18px rgba(0,0,0,.14);
    animation:mobileButtonRise .45s ease both;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .nav-link:hover,.nav-link:active{
    transform:translateY(-1px);
    border-color:rgba(243,154,29,.4);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 14px 22px rgba(0,0,0,.2);
  }
  .lang-en .nav-menu{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .lang-en .nav-link{
    font-size:11px;
    padding:0 8px;
  }
  .lang-en .nav-menu #nl-yt{
    grid-column:auto;
    justify-self:auto;
    width:auto;
  }
  .nav-actions{
    width:100%;
    display:grid;
    grid-template-columns:96px 1fr;
    gap:10px;
    align-items:center;
  }
  .lang-toggle{
    width:96px;
    min-width:96px;
    padding:4px;
    justify-self:start;
    background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 12px 20px rgba(0,0,0,.18);
  }
  .lang-btn{
    min-width:40px;
    padding:9px 6px;
    font-size:12px;
    transition:transform .2s ease, background .2s ease, color .2s ease;
  }
  .lang-btn:active{transform:scale(.96)}
  .hero-contact{
    min-width:0;
    width:100%;
    min-height:48px;
    padding:12px 16px;
    font-size:11px;
    letter-spacing:.06em;
    justify-self:stretch;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 14px 26px rgba(255,109,28,.24), inset 0 1px 0 rgba(255,255,255,.18);
    animation:mobileButtonRise .55s ease both;
  }
  .hero{
    min-height:700px;
    margin-top:0;
    padding:300px 0 26px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background-color:#080808;
    background-image:
      linear-gradient(180deg,rgba(8,8,8,.2) 0%,rgba(8,8,8,.28) 22%,rgba(8,8,8,.62) 60%,#080808 100%),
      url('../assets/hero-bg-mobile.png?v=20260328-1434');
    background-position:center 18%;
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:scroll;
    will-change:background-image;
  }
  .hero::before{
    background:
      linear-gradient(180deg,rgba(0,0,0,.18) 0%,rgba(0,0,0,.14) 24%,rgba(0,0,0,.46) 58%,rgba(0,0,0,.82) 100%),
      radial-gradient(circle at 50% 18%,rgba(255,255,255,.05),transparent 28%);
  }
  .hero::after{
    display:block;
    content:'';
    position:absolute;
    left:50%;
    bottom:235px;
    width:min(95vw,430px);
    height:440px;
    background:url('../assets/hero-bg-mobile-sobre-fundo.png') center bottom/contain no-repeat;
    transform:translateX(-50%);
    z-index:1;
    pointer-events:none;
  }
  .hero-content{
    width:100%;
    max-width:none;
    margin:0 auto;
    padding:0 24px 0;
    text-align:center;
    position:relative;
    z-index:2;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 12px;
    margin-bottom:14px;
    border-radius:20px;
    background:rgba(232,146,10,.15);
    border:1px solid rgba(232,146,10,.3);
    font-size:10px;
    letter-spacing:.18em;
    color:#e8920a;
    font-weight:600;
    text-shadow:none;
  }
  .hero-eyebrow::before{
    content:'';
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e8920a;
    flex:0 0 6px;
  }
  .hero-title{
    font-family:'Inter',sans-serif;
    font-size:27px;
    line-height:1.1;
    letter-spacing:-.03em;
    max-width:100%;
    margin-bottom:12px;
    font-weight:800;
    text-align:center;
  }
  .hero-sub{
    font-size:13px;
    line-height:1.65;
    max-width:100%;
    margin:0 0 24px;
    color:rgba(255,255,255,.55);
    font-weight:400;
    text-align:center;
  }
  .hero-cta{
    width:100%;
    min-width:0;
    max-width:none;
    min-height:0;
    margin:0 0 20px;
    padding:16px;
    font-size:13px;
    border-radius:8px;
    clip-path:none;
    background:#e8920a;
    border:none;
    box-shadow:none;
    animation:none;
  }
  .hero-highlights{
    display:none;
  }
  .hero-highlights-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    max-width:none;
    gap:8px;
    transform:none;
    margin:0;
    filter:none;
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
    justify-items:stretch;
    overflow:visible;
    padding:0;
    scroll-snap-type:none;
    scrollbar-width:auto;
  }
  .hero-highlight-card{
    width:100%;
    max-width:none;
    aspect-ratio:auto;
    min-height:0;
    padding:12px 8px 10px;
    gap:7px;
    border-radius:14px;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
    background:transparent;
    border:none;
    box-shadow:none;
    backdrop-filter:none;
    scroll-snap-align:none;
  }
  .hero-highlight-card:nth-child(1),
  .hero-highlight-card:nth-child(2),
  .hero-highlight-card:nth-child(3){
    --card-rest-y:0px;
    margin-top:0;
    z-index:auto;
  }
  .hero-highlight-title{
    max-width:none;
    font-size:10px;
    line-height:1.25;
    font-weight:700;
    color:#1d1d1d;
    letter-spacing:.04em;
    text-transform:none;
  }
  .hero-highlight-icon{
    flex:0 0 42px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#171717 0%,#0d0d0d 100%);
    border:none;
    border-radius:999px;
    box-shadow:0 8px 16px rgba(0,0,0,.12);
  }
  .hero-highlight-icon img{
    width:18px;
    height:18px;
  }
  .hero-cta::after{display:none}
  .hero-cta:hover,.hero-cta:active{transform:none;box-shadow:none}
  .about,.results{padding:78px 20px 36px}
  .about{
    margin-top:-18px;
    padding-top:54px;
  }
  .about-card{
    grid-template-columns:1fr;
    gap:14px;
    padding:16px;
    border-radius:20px;
    overflow:hidden;
  }
  .about-outline-name{
    display:none;
  }
  .about-media{
    min-height:auto;
    padding:0;
    justify-content:center;
    border-radius:18px;
  }
  .about-media::after{
    display:block;
    width:auto;
    inset:0;
    background:
      linear-gradient(180deg,rgba(var(--brand-blue-rgb),.04) 0%,rgba(var(--brand-blue-rgb),.12) 48%,rgba(var(--brand-blue-rgb),.72) 100%);
    z-index:4;
  }
  .about-photo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border-radius:18px;
    margin:0;
    background-position:center top;
  }
  .about-media{
    width:100%;
    aspect-ratio:1 / 1;
    min-height:320px;
    margin:0 0 4px;
    border-radius:18px;
    box-shadow:0 18px 32px rgba(0,0,0,.22);
  }
  .about-copy{
    padding:0;
    width:100%;
  }
  .about-name{
    font-size:32px;
    line-height:1;
    margin-bottom:10px;
  }
  .about-role{
    font-size:11px;
    line-height:1.45;
    margin-bottom:12px;
    letter-spacing:.03em;
  }
  .about-text{
    margin-bottom:10px;
    font-size:13px;
    line-height:1.7;
  }
  .stats{
    grid-template-columns:1fr;
    gap:8px;
    margin-top:16px;
    width:100%;
  }
  .stat{
    width:100%;
    min-height:0;
    padding:12px 14px;
  }
  .stat-n{
    font-size:20px;
  }
  .stat-l{
    margin-top:4px;
    font-size:10px;
    line-height:1.4;
  }
  .about-cta{
    align-self:stretch;
    width:100%;
    min-width:0;
    min-height:48px;
    margin-top:14px;
    font-size:11px;
    text-align:center;
    clip-path:none;
    border-radius:16px;
    padding:14px 18px;
    white-space:normal;
  }
  .team-band{
    padding:40px 16px;
  }
  .team-title{
    font-size:22px;
    line-height:1;
  }
  .team-text{
    max-width:100%;
    font-size:12px;
    line-height:1.6;
    margin:0 auto 24px;
  }
  .team-grid{
    gap:0;
  }
  .team-card{
    width:100%;
    max-width:620px;
    padding:0;
    border-radius:16px;
  }
  .team-card-left{
    min-width:152px;
    flex-basis:152px;
    padding:22px 14px;
  }
  .team-card-right{
    padding:20px 18px;
  }
  .team-avatar{
    width:88px;
    height:88px;
  }
  .team-name{
    font-size:12px;
  }
  .team-role{
    font-size:9px;
  }
  .team-credential{
    font-size:10px;
  }
  .team-bio{
    font-size:12px;
    line-height:1.7;
  }
  .vsl-section{
    margin-top:0;
    padding:34px 16px 34px;
  }
  .results-carousel{padding:0 0 6px}
  .results-nav-wrap{margin-top:18px}
  .results-track{
    gap:14px;
  }
  .result-card{
    flex:0 0 100%;
    width:100%;
    padding:14px;
  }
  .result-compare{
    height:320px;
  }
  .vsl-shell{max-width:100%}
  .vsl-title{
    font-size:24px;
    line-height:1.05;
    margin-bottom:10px;
  }
  .vsl-text{
    font-size:12px;
    line-height:1.7;
    margin:0 auto 18px;
  }
  .vsl-video{
    width:min(100%,300px);
    border-radius:16px;
    margin:0 auto 18px;
  }
  .vsl-placeholder{
    padding:18px;
    gap:8px;
  }
  .vsl-placeholder p{
    font-size:16px;
  }
  .vsl-placeholder small{
    font-size:12px;
  }
  .vsl-play{
    width:62px;
    height:62px;
  }
  .vsl-play::before{
    left:25px;
    top:18px;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    border-left:18px solid #fff;
  }
  .vsl-cta{
    width:auto;
    min-width:235px;
    min-height:46px;
    padding:0 18px;
    font-size:11px;
    text-align:center;
    clip-path:none;
    border-radius:16px;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.1),
      0 14px 24px rgba(0,0,0,.22),
      0 0 0 1px rgba(243,154,29,.18);
    animation:mobileButtonRise .65s ease both;
  }
  .sec-header{
    padding:36px 20px 28px;
    background:#f0ede8;
  }
  .sec-header .sec-tag{
    font-size:10px;
    letter-spacing:.22em;
    margin-bottom:8px;
  }
  .sec-title{
    font-size:30px;
    line-height:1;
    margin-bottom:6px;
  }
  .sec-title-desktop-lines{display:none}
  .sec-title-mobile-lines{display:flex}
  .sec-sub{
    max-width:330px;
    font-size:12px;
    line-height:1.65;
  }
  .products{
    padding:0 0 24px;
    background:#f0ede8;
  }
  .products-shell{
    width:100%;
    max-width:none;
  }
  .prod-row,
  .prod-row.reverse{
    flex-direction:column;
    min-height:0;
    margin:0 12px 16px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e8e4de;
    border-radius:16px;
  }
  .prod-row-dark,
  .prod-row-dark.reverse{
    background:var(--product-dark);
    border-color:rgba(243,154,29,.2);
  }
  .prod-row-muted{
    opacity:.65;
    margin-bottom:24px;
  }
  .prod-image{
    width:100%;
    height:200px;
    min-height:0;
    flex:none;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .bg-planos::after{
    content:"";
    position:absolute;
    top:0;
    right:-1px;
    bottom:0;
    width:5px;
    background:#132F3D;
    z-index:2;
    pointer-events:none;
  }
  .prod-image-contain .prod-image-cover{
    width:80%;
    height:80%;
  }
  .prod-image-planos{
    transform:none;
  }
  .prod-image-overlay,
  .prod-row.reverse .prod-image-overlay{
    height:80px;
    top:auto;
    background:linear-gradient(to top,#fff 0%,transparent 100%);
  }
  .prod-row-dark .prod-image-overlay,
  .prod-row-dark.reverse .prod-image-overlay{
    background:linear-gradient(to top,var(--product-dark) 0%,transparent 100%);
  }
  .prod-img-badge{
    top:12px;
    left:12px;
    right:auto;
    font-size:9px;
    letter-spacing:.12em;
    padding:4px 10px;
  }
  .prod-row.reverse .prod-img-badge{
    left:12px;
    right:auto;
  }
  .prod-content{
    padding:16px 18px 20px;
    background:#fff;
  }
  .prod-tag{
    font-size:9px;
    letter-spacing:.2em;
    margin-bottom:5px;
  }
  .prod-title{
    font-size:26px;
    margin-bottom:3px;
  }
  #p4-title{
    font-size:22px;
    letter-spacing:0;
    line-height:1.05;
    white-space:normal;
  }
  #p4-title .prod-title-desktop-lines{
    display:none;
  }
  #p4-title .prod-title-mobile-lines{
    display:flex;
  }
  .prod-subtitle{
    font-size:10px;
    margin-bottom:12px;
  }
  .prod-divider{
    width:32px;
    height:2px;
    margin-bottom:12px;
  }
  .prod-desc{
    font-size:12px;
    line-height:1.7;
    margin-bottom:14px;
  }
  .prod-features{
    gap:7px;
    margin-bottom:16px;
  }
  .prod-feat{
    align-items:flex-start;
    gap:8px;
    font-size:11px;
    color:#666;
  }
  .prod-feat-dot{
    width:5px;
    height:5px;
    flex-basis:5px;
    margin-top:5px;
  }
  .prod-cta-row{
    justify-content:flex-end;
    align-items:center;
    gap:10px;
  }
  .prod-btn-primary,
  .prod-btn-secondary{
    width:auto;
    min-height:0;
    padding:10px 18px;
    border-radius:6px;
    font-size:11px;
    letter-spacing:.08em;
    white-space:nowrap;
  }
  .prod-price{
    width:auto;
    font-size:22px;
    margin-right:auto;
  }
  .prod-price span{
    font-size:11px;
    margin-left:3px;
  }
  .consultoria-online{padding:48px 20px}
  .consultoria-title{font-size:34px}
  .consultoria-intro{
    max-width:320px;
    margin:0 auto 24px;
    font-size:12px;
    line-height:1.65;
  }
  .consultoria-tabs{
    display:flex;
    gap:4px;
    padding:4px;
    margin:0 auto 20px;
    width:min(100%,320px);
    background:#fff;
    border:1px solid #e8e4de;
    border-radius:10px;
  }
  .consultoria-tab{
    flex:1;
    padding:10px 6px;
    border:0;
    border-radius:7px;
    background:transparent;
    color:#b8b1a8;
    font-family:'Inter',sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    cursor:pointer;
    transition:background .2s ease,color .2s ease;
  }
  .consultoria-tab.is-active[data-plan="gold"]{
    background:#e8920a;
    color:#fff;
  }
  .consultoria-tab.is-active[data-plan="premium"]{
    background:#111;
    color:#fff;
  }
  .consultoria-cards{
    flex-direction:column;
    align-items:center;
    margin-bottom:14px;
  }
  .consultoria-card,
  .consultoria-card-wrap{
    width:min(100%,320px);
    max-width:100%;
  }
  .consultoria-card{
    width:100%;
  }
  .consultoria-cards[data-mobile-plan="gold"] .consultoria-card-wrap{
    display:none;
  }
  .consultoria-cards[data-mobile-plan="premium"] > .consultoria-card{
    display:none;
  }
  .consultoria-cards[data-mobile-plan="premium"] .consultoria-card-wrap{
    display:block;
  }
  .consultoria-card-header{
    padding:18px 18px 14px;
  }
  .consultoria-card-name{
    font-size:24px;
    margin-bottom:3px;
  }
  .consultoria-card-desc{
    font-size:11px;
    line-height:1.55;
  }
  .consultoria-card-body{
    padding:16px 18px;
  }
  .consultoria-feature-list{
    gap:9px;
    margin-bottom:16px;
  }
  .consultoria-feature{
    gap:9px;
    font-size:12px;
  }
  .consultoria-feature-check{
    width:15px;
    height:15px;
  }
  .consultoria-feature-dot{
    width:5px;
    height:5px;
  }
  .consultoria-premium-tag{
    display:none;
  }
  .consultoria-card-premium{
    border:1px solid #e8e4de;
    border-radius:14px;
  }
  .consultoria-card-cta{
    padding:13px;
    border-radius:8px;
    font-size:12px;
  }
  .consultoria-how{
    width:100%;
    max-width:320px;
    padding:20px 18px;
    margin-top:14px;
  }
  .consultoria-how-title{
    font-size:15px;
    margin-bottom:14px;
  }
  .consultoria-steps{
    display:grid;
    gap:10px;
  }
  .consultoria-step{
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    align-items:start;
    column-gap:12px;
    padding:0;
    text-align:left;
  }
  .consultoria-step-num{
    width:26px;
    height:26px;
    font-size:11px;
    margin:0;
  }
  .consultoria-step-text{
    min-width:0;
    font-size:12px;
    line-height:1.45;
  }
  .consultoria-step:not(:last-child)::after{
    display:none;
  }
  .yt-band{padding:32px 20px}
  .faq-section{padding:48px 20px}
  .faq-title{font-size:34px}
  .faq-question{padding:16px 16px;font-size:14px}
  .faq-answer{padding:0 16px 16px;font-size:13px}
  .form-band{padding:40px 20px}
  .footer{
    padding:7px 12px;
    gap:8px;
  }
  .footer-logo{width:92px}
  .footer-copy{
    font-size:7px;
    letter-spacing:.03em;
  }
}

@media (max-width: 767px){
  .results{
    padding:28px 0 34px;
  }
  .results-shell{
    max-width:none;
  }
  .results .sec-tag{
    font-size:9px;
    margin-bottom:6px;
  }
  .results-title{
    font-size:18px;
    line-height:1.2;
    margin-bottom:4px;
  }
  .results-text{
    font-size:11px;
    margin:0 auto 20px;
  }
  .results-carousel{
    padding:0;
  }
  .results-viewport{
    overflow:hidden;
  }
  .results-track{
    gap:12px;
    padding:0 1rem;
  }
  .result-card{
    flex:0 0 260px;
    width:260px;
    max-width:260px;
    border-radius:12px;
  }
  .result-compare{
    height:300px;
  }
  .results-nav{
    display:none;
  }
  .results-nav-wrap{
    margin-top:16px;
    gap:0;
  }
  .results-nav-center{
    gap:8px;
  }
  .results-swipe-hint{
    display:block;
    font-size:10px;
    color:#444;
    margin-top:0;
    letter-spacing:.04em;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-content{
    opacity:1;
    transform:none;
    animation:none;
  }

  .scroll-reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .reveal-blur{filter:none}
}

@media (min-width: 601px) and (max-width: 1080px){
  .navbar{
    width:calc(100% - 88px);
    max-width:calc(100% - 88px);
    padding:7px 10px;
  }

  .nav-logo-desktop{width:138px;max-width:22vw}
  .nav-menu{gap:12px}
  .nav-link{font-size:11px}
  .lang-toggle{min-width:80px}
  .lang-btn{min-width:34px;padding:6px 5px;font-size:10px}
  .hero-contact{min-width:auto;padding:8px 12px;font-size:10px}
  .results-shell{max-width:920px}
  .products-shell{max-width:none}
  .prod-content{padding:48px 40px}
  .prod-title{font-size:42px}
}

@media (min-width: 601px) and (max-width: 768px){
  .prod-row,
  .prod-row.reverse{
    flex-direction:column;
  }
  .prod-image{
    min-height:320px;
  }
  .prod-image-overlay,
  .prod-row.reverse .prod-image-overlay{
    background:linear-gradient(to bottom,transparent 60%,var(--surface-alt) 100%);
  }
}
