:root{
  --bg: #0A0F0D;
  --bg-alt: #101613;
  --bg-card: #121917;
  --accent: #2FE8B4;
  --accent-soft: rgba(47,232,180,.12);
  --accent-dim: rgba(47,232,180,.35);
  --text: #F3F6F4;
  --text-muted: #9AA6A1;
  --border: rgba(255,255,255,.09);
  --radius: 14px;
  --maxw: 620px;
  --maxw-desktop: 1080px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Poppins', sans-serif;
  font-weight:400;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer; border:none;}

::selection{background:var(--accent); color:#04120D;}

:focus-visible{outline:2px solid var(--accent); outline-offset:3px;}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
@media(min-width:900px){
  .wrap{max-width:var(--maxw-desktop); padding:0 40px;}
}

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(10,15,13,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:16px 24px;
  display:flex; align-items:center; justify-content:space-between;
}
@media(min-width:900px){ .nav-inner{max-width:var(--maxw-desktop); padding:18px 40px;} }

.logo{display:flex; align-items:center; gap:9px;}
.logo svg{width:22px; height:22px; flex-shrink:0;}
.logo-text{font-weight:700; font-size:17px; letter-spacing:.2px;}
.logo-text b{color:var(--accent); font-weight:800;}

.nav-cta{
  background:var(--accent);
  color:#04120D;
  font-weight:600;
  font-size:13.5px;
  padding:10px 18px;
  border-radius:999px;
  white-space:nowrap;
}
.nav-cta:hover{ filter:brightness(1.08); }

/* ---------- SECTION SPACING ---------- */
section{padding:56px 0;}
@media(min-width:900px){ section{padding:88px 0;} }
.section-tight{padding-top:0;}

/* ---------- TYPE HELPERS ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--accent);
  font-size:13px; font-weight:600;
  letter-spacing:.3px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--accent);
}
h1{
  font-size:clamp(1.85rem, 5.6vw, 3rem);
  font-weight:700;
  line-height:1.16;
  letter-spacing:-.5px;
}
h2{
  font-size:clamp(1.5rem, 4.2vw, 2.3rem);
  font-weight:700;
  line-height:1.2;
  letter-spacing:-.3px;
}
h3{
  font-size:1.15rem;
  font-weight:600;
}
p{ color:var(--text-muted); font-size:16px; }
.lede{ font-size:17px; color:var(--text-muted); max-width:54ch; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- HERO + VIDEO ---------- */
.hero{ text-align:center; padding-top:48px; }
.hero .eyebrow{ justify-content:center; }
.hero h1{ max-width:16ch; margin:0 auto 18px; }
.hero p{ max-width:52ch; margin:0 auto; }

.video-frame{
  margin-top:36px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--bg-card);
  position:relative;
}


/* ---------- CTA BLOCK ---------- */
.cta-panel{
  margin-top:40px;
  background:linear-gradient(155deg, var(--accent-soft), transparent 70%), var(--bg-card);
  border:1px solid var(--accent-dim);
  border-radius:var(--radius);
  padding:28px 24px;
}
@media(min-width:900px){ .cta-panel{ padding:36px 44px; } }
.cta-panel .eyebrow{ color:var(--text-muted); }
.cta-panel .eyebrow::before{ background:var(--text-muted); }
.cta-panel h3{ font-size:1.35rem; margin-bottom:10px; }
.cta-panel p{ margin-bottom:22px; }

.btn-primary{
  display:inline-flex; align-items:center; justify-content:center;
  width:100%;
  background:var(--accent);
  color:#04120D;
  font-weight:600; font-size:15.5px;
  padding:16px 20px;
  border-radius:10px;
  transition:filter .15s ease;
}
.btn-primary:hover{ filter:brightness(1.08); }
@media(min-width:900px){ .btn-primary{ width:auto; padding:16px 34px; } }

.cta-meta{
  margin-top:12px; font-size:13px; color:var(--text-muted);
  display:flex; gap:10px; flex-wrap:wrap;
}
.cta-meta span::after{ content:"·"; margin-left:10px; color:var(--border); }
.cta-meta span:last-child::after{ content:""; }

/* ---------- STATS / AFEAL ---------- */
.stat-copy{ max-width:60ch; }
.stat-copy b{ color:var(--text); font-weight:600; }

.bars{
  display:flex; align-items:flex-end; gap:18px;
  height:200px;
  margin:40px 0 18px;
  padding:0 6px;
}
.bar-col{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; gap:10px;}
.bar-val{ font-size:13px; font-weight:600; color:var(--text); white-space:nowrap; }
.bar{
  width:100%;
  max-width:76px;
  background:linear-gradient(180deg, var(--accent), rgba(47,232,180,.35));
  border-radius:8px 8px 3px 3px;
}
.bar-col:nth-child(1) .bar{ height:73.5%; }
.bar-col:nth-child(2) .bar{ height:88.1%; }
.bar-col:nth-child(3) .bar{ height:100%; background:linear-gradient(180deg, var(--accent), #17c497); }
.bar-year{ font-size:12.5px; color:var(--text-muted); }

.growth-badge{
  display:inline-flex; align-items:baseline; gap:10px;
  border:1px solid var(--accent-dim);
  background:var(--accent-soft);
  border-radius:999px;
  padding:10px 20px;
  margin-top:8px;
}
.growth-badge b{ color:var(--accent); font-size:20px; font-weight:700; }
.growth-badge span{ font-size:12.5px; color:var(--text-muted); letter-spacing:.2px; }

/* ---------- QUOTE / TRANSITION ---------- */
.quote-block{
  border-left:2px solid var(--accent);
  padding-left:20px;
  margin-top:28px;
}
.quote-block p{ font-style:normal; font-size:18px; color:var(--text); font-weight:500; }

/* ---------- MOVEMENTS (3 alavancas) ---------- */
.movement{
  position:relative;
  padding:44px 0;
  border-top:1px solid var(--border);
}
.movement:first-of-type{ border-top:none; }
.movement-num{
  position:absolute;
  top:-6px; left:-6px;
  font-size:clamp(5.5rem, 18vw, 9rem);
  font-weight:800;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(47,232,180,.16);
  line-height:1;
  z-index:0;
  user-select:none;
  pointer-events:none;
}
.movement-inner{ position:relative; z-index:1; }
.movement h3.title{
  color:var(--accent);
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:16px;
}
.movement .lead-line{
  font-size:17px; color:var(--text); font-weight:500;
  max-width:48ch; margin-bottom:22px;
}
.sub-points{
  display:grid; gap:18px;
  grid-template-columns:1fr;
  margin-bottom:20px;
}
@media(min-width:900px){ .sub-points{ grid-template-columns:repeat(3, 1fr); gap:24px; } }
.sub-point h4{ font-size:15px; font-weight:600; margin-bottom:6px; }
.sub-point p{ font-size:14.5px; }

.tag-pill{
  display:inline-block;
  font-size:13.5px; font-weight:500;
  color:var(--accent);
  background:var(--accent-soft);
  border:1px solid var(--accent-dim);
  border-radius:8px;
  padding:10px 16px;
  max-width:100%;
}

/* ---------- TRAJECTORY MATH ---------- */
.traj-title{ margin-bottom:26px; }
.traj{
  display:flex; flex-direction:column; gap:0;
}
@media(min-width:900px){ .traj{ flex-direction:row; align-items:stretch; gap:0; } }
.traj-step{
  flex:1;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 20px;
  position:relative;
}
.traj-arrow{
  display:flex; align-items:center; justify-content:center;
  padding:10px 0;
  color:var(--accent);
}
@media(min-width:900px){
  .traj-arrow{ padding:0 6px; }
  .traj-arrow svg{ transform:rotate(0deg); }
}
.traj-arrow svg{ width:22px; height:22px; transform:rotate(90deg); }
@media(min-width:900px){ .traj-arrow svg{ transform:rotate(0deg); } }
.traj-step .month{ font-size:12.5px; color:var(--text-muted); margin-bottom:8px; font-weight:500; }
.traj-step .value{ font-size:1.5rem; font-weight:700; color:var(--text); margin-bottom:6px; }
.traj-step .desc{ font-size:13.5px; color:var(--text-muted); }
.traj-note{ margin-top:18px; font-size:13px; color:var(--text-muted); }

/* ---------- OBJECTION REASSURANCE ---------- */
.reassure{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 24px;
  margin-top:44px;
}
.reassure h3{ margin-bottom:10px; }
.reassure p{ margin:0; }

/* ---------- CHECKLIST ---------- */
.checklist{
  display:grid; gap:14px;
  grid-template-columns:1fr;
  margin-top:32px;
}
@media(min-width:900px){ .checklist{ grid-template-columns:1fr 1fr; gap:16px 28px; } }
.check-item{ display:flex; gap:12px; align-items:flex-start; }
.check-icon{
  flex-shrink:0; width:22px; height:22px; border-radius:50%;
  background:var(--accent-soft); border:1px solid var(--accent-dim);
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.check-icon svg{ width:12px; height:12px; }
.check-item h4{ font-size:15px; font-weight:600; margin-bottom:2px; }
.check-item p{ font-size:14px; }

/* ---------- CASES ---------- */
.case-featured{
  background:linear-gradient(155deg, var(--accent-soft), transparent 65%), var(--bg-card);
  border:1px solid var(--accent-dim);
  border-radius:var(--radius);
  padding:28px 24px;
  margin-top:32px;
}
@media(min-width:900px){ .case-featured{ padding:38px 44px; } }
.case-featured .case-name{ font-size:14px; color:var(--text-muted); margin-bottom:6px; }
.case-featured .case-number{
  font-size:clamp(1.8rem, 5vw, 2.6rem);
  font-weight:800; color:var(--accent);
  margin-bottom:10px; line-height:1.1;
}
.case-featured p{ max-width:56ch; }


.case-grid{
  display:grid; gap:16px;
  grid-template-columns:1fr;
  margin-top:16px;
}
@media(min-width:600px){ .case-grid{ grid-template-columns:1fr 1fr; } }
.case-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
}
.case-card .case-number{ font-size:1.4rem; font-weight:700; color:var(--accent); margin-bottom:6px; }
.case-card .case-name{ font-size:13.5px; font-weight:600; margin-bottom:6px; }
.case-card p{ font-size:13.5px; }
/* ---------- NEXT STEPS ---------- */
.steps{ display:grid; gap:18px; margin-top:32px; grid-template-columns:1fr; }
@media(min-width:900px){ .steps{ grid-template-columns:repeat(3, 1fr); } }
.step-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 20px;
}
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:9px;
  background:var(--accent); color:#04120D;
  font-weight:700; font-size:14px;
  margin-bottom:14px;
}
.step-card h4{ font-size:15.5px; font-weight:600; margin-bottom:6px; }
.step-card p{ font-size:14px; }

/* ---------- FAQ ---------- */
.faq-list{ margin-top:28px; border-top:1px solid var(--border); }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-item summary{
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:20px 4px;
  font-weight:500; font-size:15.5px;
  cursor:pointer;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item .plus{
  flex-shrink:0; width:22px; height:22px; position:relative;
}
.faq-item .plus::before, .faq-item .plus::after{
  content:""; position:absolute; background:var(--accent);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-item .plus::before{ width:14px; height:2px; }
.faq-item .plus::after{ width:2px; height:14px; transition:transform .2s ease; }
.faq-item[open] .plus::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-item .faq-a{ padding:0 4px 20px; font-size:14.5px; color:var(--text-muted); max-width:62ch; }

/* ---------- FOOTER ---------- */
footer{
  border-top:1px solid var(--border);
  padding:36px 0 60px;
  text-align:center;
}
footer p{ font-size:13px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}

/* Accessibility, media states and narrow screens. */
:root { color-scheme: dark; }
[hidden] { display: none !important; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 12px 18px; background: var(--accent); color: #04120D; border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.nav-inner { gap: 12px; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; text-align: center; font-size: .875rem; }
.btn-primary { min-height: 48px; font-size: 1rem; }
.logo-text { white-space: nowrap; }
.sub-point p, .check-item p, .case-card p, .step-card p, .faq-item .faq-a { font-size: 1rem; }
.eyebrow, .tag-pill, .traj-step .desc, .case-card .case-name, .cta-meta { font-size: .875rem; }
.sub-point h4, .check-item h4, .step-card h4 { font-size: 1rem; }
.traj-step { min-width: 0; }
.traj-step .value { font-size: clamp(1.2rem, 2.2vw, 1.5rem); overflow-wrap: anywhere; }
.bar { flex-shrink: 1; }
.bar-year, .bar-val { flex-shrink: 0; }
.growth-badge { max-width: 100%; align-items: center; }
.growth-badge span { font-size: .8125rem; }

.booking-dialog { width: min(780px, calc(100% - 32px)); height: min(760px, 90dvh); max-width: none; max-height: none; padding: 0; margin: auto; color: var(--text); background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); }
.booking-dialog::backdrop { background: rgba(4,8,7,.82); backdrop-filter: blur(4px); }
.booking-dialog .modal-box { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px 8px; flex-shrink: 0; }
.modal-header h2 { font-size: 1.125rem; line-height: 1.4; }
.modal-close { flex-shrink: 0; width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; color: var(--text); font-size: 1.5rem; line-height: 1; }
.booking-help { padding: 0 20px 16px; flex-shrink: 0; }
.booking-status { font-size: .875rem; margin-bottom: 6px; }
.booking-help a { font-size: .875rem; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; display: inline-block; padding-block: 6px; }
.modal-body { flex: 1; min-height: 0; overflow: auto; }
#my-cal-inline-consultoria-comercial-vsl { width: 100%; min-height: 100%; overflow: auto; }
@media (max-width: 380px) {
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .logo { gap: 6px; }
  .logo-text { font-size: .875rem; }
  .logo svg { width: 18px; height: 18px; }
  .nav-cta { white-space: normal; padding: 8px 12px; }
}
@media (max-width: 599px) {
  .booking-dialog { width: calc(100% - 16px); height: 94dvh; }
  .modal-header { padding: 12px 14px 6px; }
  .booking-help { padding: 0 14px 12px; }
}
