/* ============================================================
   MUNDO | Marketing Médico — Design System v3 (Light / Cream)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

:root {
  /* ── Mundo Brand Palette ── */
  --verde-mundo: #2D5E3F;
  --verde-mundo-rgb: 45, 94, 63;
  --verde-escuro: #1a1e14;
  --verde-escuro-rgb: 26, 30, 20;
  --verde-ativa: #5C5C2E;
  --amarelo-acre: #8A6D1B;
  --amarelo-acre-rgb: 138, 109, 27;
  --amarelo-claro: #7A5C10;
  --amarelo-claro-rgb: 122, 92, 16;
  --dourado: #9B7520;
  --dourado-rgb: 155, 117, 32;
  --laranja: #c07520;
  --laranja-rgb: 192, 117, 32;
  --vermelho: #c43d32;
  --cinza-grafite: #3A3A3A;
  --bege: #eae5df;
  --bege-claro: #e7dcc2;
  --creme: #F5F0E8;
  /* Substack Orange */
  --substack-orange: #E85B14;
  --substack-orange-rgb: 232, 91, 20;

  /* ── Backgrounds — CREAM ── */
  --bg-primary: #eae5df;
  --bg-secondary: #e0d9d1;
  --bg-tertiary: #d8d0c8;

  /* ── Cards ── */
  --card-bg: rgba(255,255,255,0.55);
  --card-bg-hover: rgba(255,255,255,0.75);
  --card-bg-elevated: rgba(255,255,255,0.65);

  /* ── Glass ── */
  --glass-bg: rgba(255,255,255,0.45);
  --glass-border: rgba(0,0,0,0.08);

  /* ── Typography ── */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --text-primary: #1a2a22;
  --text-secondary: rgba(26,42,34,0.65);
  --text-muted: rgba(26,42,34,0.40);

  /* ── Borders ── */
  --border: rgba(0,0,0,0.08);
  --border-subtle: rgba(0,0,0,0.04);

  /* ── Layout ── */
  --section-py: clamp(5rem, 12vw, 9rem);
  --container-max: 1140px;
  --card-radius: 20px;
  --card-radius-sm: 12px;
  --card-radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--font-body);background:var(--bg-primary);color:var(--text-primary);line-height:1.6;overflow-x:hidden;max-width:100vw}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{border:none;background:none;font-family:inherit;cursor:pointer;color:inherit}
ul,ol{list-style:none}

/* ── Utilities ── */
.container{width:100%;max-width:var(--container-max);margin:0 auto;padding:0 clamp(1.25rem,4vw,2.5rem)}
.section-label{font-family:var(--font-body);font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;color:var(--amarelo-acre);margin-bottom:1rem;display:inline-flex;align-items:center;gap:.5rem}
.section-label::before{content:'';width:20px;height:1px;background:var(--amarelo-acre)}
.section-headline{font-family:var(--font-display);font-size:clamp(2rem,4.5vw,3.2rem);font-weight:500;line-height:1.15;margin-bottom:1.5rem;color:var(--text-primary)}
.section-headline em{font-style:italic;font-weight:300;color:var(--verde-mundo)}
.section-body{font-size:1.05rem;line-height:1.75;color:var(--text-secondary);max-width:680px}
.section-body+.section-body{margin-top:1.25rem}
.accent{color:var(--verde-mundo)}

/* ── Background decorations ── */
.bg-glow{position:absolute;border-radius:50%;filter:blur(120px);pointer-events:none;z-index:0}
.bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px);background-size:64px 64px;pointer-events:none;z-index:0;mask-image:radial-gradient(ellipse 60% 50% at 50% 0%,black 20%,transparent 70%);-webkit-mask-image:radial-gradient(ellipse 60% 50% at 50% 0%,black 20%,transparent 70%)}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav-wrapper{position:fixed;top:1rem;left:0;right:0;z-index:100;display:flex;justify-content:center;padding:0 1.5rem;pointer-events:none}
.navbar{pointer-events:all;width:100%;max-width:var(--container-max);display:flex;align-items:center;justify-content:space-between;padding:.7rem 1.5rem;background:rgba(234,229,223,.75);backdrop-filter:blur(28px);-webkit-backdrop-filter:blur(28px);border-radius:16px;border:1px solid rgba(0,0,0,.06);box-shadow:0 4px 32px rgba(0,0,0,.06);transition:background .3s,box-shadow .3s;box-sizing:border-box}
.navbar.scrolled{background:rgba(234,229,223,.92);box-shadow:0 8px 40px rgba(0,0,0,.1)}
.nav-logo svg{height:28px;width:auto}
.nav-logo svg path{fill:var(--text-primary)}
.nav-logo svg circle{fill:var(--verde-mundo)}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{font-size:.85rem;font-weight:500;color:var(--text-secondary);transition:color .25s}
.nav-links a:hover{color:var(--text-primary)}
.nav-cta{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem 1.25rem;background:var(--verde-mundo);color:#fff !important;border-radius:50px;font-size:.8rem;font-weight:600;transition:transform .25s var(--ease-out),box-shadow .25s}
.nav-cta:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(var(--verde-mundo-rgb),.3)}
.nav-hamburger{display:none;flex-direction:column;gap:5px;padding:4px;cursor:pointer}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--text-primary);border-radius:2px;transition:transform .3s,opacity .3s}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-body);font-weight:600;font-size:.95rem;border-radius:50px;transition:all .3s var(--ease-out);cursor:pointer;white-space:nowrap}
.btn-primary{padding:.9rem 2rem;background:var(--verde-mundo);color:#fff;box-shadow:0 4px 20px rgba(var(--verde-mundo-rgb),.2)}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(var(--verde-mundo-rgb),.3)}
.btn-primary .btn-arrow{transition:transform .3s var(--ease-out)}
.btn-primary:hover .btn-arrow{transform:translateX(4px)}
.btn-secondary{padding:.9rem 2rem;background:transparent;color:var(--text-primary);border:1px solid rgba(0,0,0,.15)}
.btn-secondary:hover{background:rgba(255,255,255,.5);border-color:rgba(0,0,0,.2);transform:translateY(-2px)}
.btn-gold{padding:.9rem 2rem;background:linear-gradient(135deg,var(--dourado),#B58A30);color:#fff;box-shadow:0 4px 20px rgba(var(--dourado-rgb),.2)}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(var(--dourado-rgb),.3)}
.btn-substack{padding:.9rem 2rem;background:var(--substack-orange);color:#fff;box-shadow:0 4px 20px rgba(var(--substack-orange-rgb),.2)}
.btn-substack:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(var(--substack-orange-rgb),.3)}
.btn-whatsapp{padding:.9rem 2rem;background:#25D366;color:#fff;box-shadow:0 4px 20px rgba(37,211,102,.15)}
.btn-whatsapp:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(37,211,102,.25)}

/* ============================================================
   HERO
   ============================================================ */
.hero{min-height:100vh;display:flex;align-items:center;position:relative;overflow:hidden;padding-top:6rem}
.hero .bg-glow--1{width:700px;height:700px;background:radial-gradient(circle,rgba(var(--verde-mundo-rgb),.08),transparent 70%);top:-200px;right:-150px}
.hero .bg-glow--2{width:500px;height:500px;background:radial-gradient(circle,rgba(var(--amarelo-acre-rgb),.06),transparent 70%);bottom:-100px;left:-100px}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;position:relative;z-index:1}
.hero-copy{max-width:560px}
.hero-headline{font-family:var(--font-display);font-size:clamp(2.6rem,5.5vw,3.8rem);font-weight:500;line-height:1.1;margin-bottom:1.5rem;color:var(--text-primary)}
.hero-headline em{font-style:italic;font-weight:300;color:var(--verde-mundo)}
.hero-subheadline{font-size:1.1rem;line-height:1.7;color:var(--text-secondary);margin-bottom:2.5rem;max-width:480px}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}

/* Google Search Mockup in Hero */
.hero-visual{position:relative;display:flex;justify-content:center;align-items:center}
.google-mockup{width:100%;max-width:460px;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:var(--card-radius);overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.08),0 4px 16px rgba(0,0,0,.04);position:relative;z-index:1}
.google-bar{padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem;border-bottom:1px solid rgba(0,0,0,.05)}
.google-bar-dots{display:flex;gap:5px}
.google-bar-dots span{width:8px;height:8px;border-radius:50%;background:rgba(0,0,0,.08)}
.google-search-box{flex:1;display:flex;align-items:center;gap:.5rem;background:rgba(0,0,0,.03);border:1px solid rgba(0,0,0,.08);border-radius:50px;padding:.45rem 1rem;font-size:.78rem;color:var(--text-muted)}
.google-search-box svg{flex-shrink:0;opacity:.5}
.google-results{padding:1.25rem}
.google-results-label{font-size:.65rem;color:var(--text-muted);margin-bottom:1rem}
.google-result{padding:1rem;border-radius:var(--card-radius-sm);margin-bottom:.6rem;transition:all .3s}
.google-result.highlighted{background:rgba(var(--verde-mundo-rgb),.06);border:1px solid rgba(var(--verde-mundo-rgb),.15)}
.google-result.faded{opacity:.35}
.google-result-url{font-size:.7rem;color:var(--verde-mundo);margin-bottom:.25rem;display:flex;align-items:center;gap:.35rem}
.google-result-title{font-family:var(--font-display);font-size:1rem;font-weight:500;color:var(--verde-mundo);margin-bottom:.25rem}
.google-result-desc{font-size:.78rem;color:var(--text-muted);line-height:1.5}
.google-result-meta{display:flex;gap:.5rem;margin-top:.5rem}
.google-result-meta span{font-size:.65rem;padding:.2rem .5rem;border-radius:50px;background:rgba(var(--verde-mundo-rgb),.08);color:var(--verde-mundo)}
.hero-float-card{position:absolute;z-index:20;padding:.85rem 1.1rem;background:rgba(255,255,255,.35);backdrop-filter:blur(24px) saturate(1.4);-webkit-backdrop-filter:blur(24px) saturate(1.4);border:1px solid rgba(255,255,255,.45);border-radius:var(--card-radius-sm);box-shadow:0 8px 32px rgba(0,0,0,.06),inset 0 0 0 1px rgba(255,255,255,.15);animation:float 6s ease-in-out infinite}
.hero-float-card--1{bottom:-24px;left:-40px}
.hero-float-card--2{top:20px;right:-40px;animation-delay:-2s}
.float-card-label{font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);margin-bottom:.3rem}
.float-card-value{font-family:var(--font-display);font-size:1.35rem;font-weight:600;line-height:1;color:var(--text-primary)}
.float-card-sub{font-size:.7rem;color:var(--text-muted);margin-top:.2rem}
.mini-chart{display:flex;align-items:flex-end;gap:3px;height:32px;margin-top:.5rem}
.mini-chart-bar{width:6px;border-radius:3px 3px 0 0;background:rgba(var(--verde-mundo-rgb),.2)}
.mini-chart-bar.active{background:var(--verde-mundo)}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-section{padding:3.5rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;z-index:1}
.stats-grid{display:flex;align-items:center;justify-content:space-between}
.stat-item{flex:1;text-align:center;padding:0 2rem;position:relative}
.stat-item:not(:last-child)::after{content:'';position:absolute;right:0;top:10%;height:80%;width:1px;background:var(--border)}
.stat-number{font-family:var(--font-display);font-size:clamp(1.6rem,2.8vw,2.4rem);font-weight:600;color:var(--text-primary);line-height:1;margin-bottom:.45rem;display:block}
.stat-label{font-size:.7rem;font-weight:500;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);display:block}

/* ============================================================
   PROBLEM SECTION — Compact Side-by-Side
   ============================================================ */
.problem-section{position:relative;overflow:hidden;padding-bottom:var(--section-py)}
.problem-header{padding:var(--section-py) 0 3rem;position:relative;z-index:1}
.problem-scroll{position:relative;z-index:1}

/* Compact layout: text + visual side by side, no sticky, no min-height */
.problem-step{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;padding:2.5rem 0}
.problem-step + .problem-step{border-top:1px solid rgba(0,0,0,.05)}
.problem-step-text{max-width:480px}
.problem-step-text p{font-size:1.05rem;line-height:1.75;color:var(--text-secondary)}
.problem-step-text p strong{color:var(--text-primary);font-weight:600}
.problem-step-visual{display:flex;justify-content:center}
.problem-step .reveal{opacity:0;transform:translateY(30px);transition:opacity .6s var(--ease-out),transform .6s var(--ease-out)}
.problem-step.in-view .reveal{opacity:1;transform:translateY(0)}

/* Browser mockup */
.browser-mockup{background:#fff;border-radius:var(--card-radius);border:1px solid rgba(0,0,0,.08);overflow:hidden;transition:transform .4s var(--ease-out),box-shadow .4s;max-width:340px;width:100%;box-shadow:0 8px 32px rgba(0,0,0,.06)}
.browser-mockup:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.1)}
.browser-bar{display:flex;align-items:center;gap:6px;padding:.75rem 1rem;border-bottom:1px solid rgba(0,0,0,.04)}
.browser-dot{width:8px;height:8px;border-radius:50%;background:rgba(0,0,0,.1)}
.browser-body{padding:1.25rem;display:flex;flex-direction:column;gap:.85rem}
.browser-line{height:8px;border-radius:4px;background:rgba(0,0,0,.05)}
.browser-line.short{width:40%}.browser-line.medium{width:65%}.browser-line.long{width:90%}
.browser-mockup.good .browser-dot:first-child{background:#34C759}
.browser-mockup.good .browser-line{background:rgba(var(--verde-mundo-rgb),.1)}
.browser-mockup.bad .browser-dot:first-child{background:#FF3B30}
.browser-mockup.bad{opacity:.55;border-color:rgba(255,59,48,.15)}
.browser-label{padding:.75rem 1.25rem;font-size:.75rem;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em}

/* Google Maps mini mockup */
.maps-mockup{background:#fff;border-radius:var(--card-radius);border:1px solid rgba(0,0,0,.08);overflow:hidden;max-width:340px;width:100%;box-shadow:0 8px 32px rgba(0,0,0,.06)}
.maps-mockup-header{padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem}
.maps-pin{width:32px;height:32px;border-radius:50%;background:rgba(var(--verde-mundo-rgb),.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.maps-pin svg{color:var(--verde-mundo);width:16px;height:16px}
.maps-info h4{font-family:var(--font-display);font-size:.95rem;font-weight:500;color:var(--text-primary)}
.maps-info p{font-size:.72rem;color:var(--text-muted)}
.maps-body{height:140px;background:linear-gradient(135deg,rgba(var(--verde-mundo-rgb),.04),rgba(var(--amarelo-acre-rgb),.03));position:relative;display:flex;align-items:center;justify-content:center}
.maps-body::after{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(0,0,0,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.02) 1px,transparent 1px);background-size:24px 24px}
.maps-dot{width:12px;height:12px;border-radius:50%;background:var(--verde-mundo);box-shadow:0 0 0 4px rgba(var(--verde-mundo-rgb),.15),0 0 16px rgba(var(--verde-mundo-rgb),.2);position:relative;z-index:1}
.maps-stars{display:flex;gap:2px;margin-top:2px}
.maps-stars span{color:var(--amarelo-acre);font-size:.7rem}

/* Instagram mini mockup */
.insta-mockup{background:#fff;border-radius:var(--card-radius);border:1px solid rgba(0,0,0,.08);overflow:hidden;max-width:340px;width:100%;box-shadow:0 8px 32px rgba(0,0,0,.06)}
.insta-header{padding:1rem 1.25rem;display:flex;align-items:center;gap:.75rem;border-bottom:1px solid rgba(0,0,0,.04)}
.insta-avatar{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,#E1306C,#F77737,#FCAF45);display:flex;align-items:center;justify-content:center}
.insta-avatar-inner{width:32px;height:32px;border-radius:50%;background:#fff}
.insta-name{font-size:.82rem;font-weight:600;color:var(--text-primary)}.insta-bio{font-size:.7rem;color:var(--text-muted)}
.insta-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;padding:2px}
.insta-grid-item{aspect-ratio:1;background:rgba(0,0,0,.04)}
.insta-grid-item.has-content{background:rgba(var(--verde-mundo-rgb),.08)}

/* ============================================================
   PARA QUEM — HORIZONTAL TIMELINE
   ============================================================ */
.for-whom-section{padding:var(--section-py) 0;position:relative;overflow:hidden}
.timeline-header{text-align:center;max-width:680px;margin:0 auto 4rem;position:relative;z-index:1}
.timeline-v2{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:0;max-width:100%}

/* Horizontal connector line */
.timeline-v2::before{content:'';position:absolute;left:0;right:0;top:20px;height:2px;background:linear-gradient(90deg,transparent,rgba(var(--amarelo-acre-rgb),.3) 10%,rgba(var(--amarelo-acre-rgb),.3) 90%,transparent)}

.timeline-stage-v2{display:flex;flex-direction:column;align-items:center;text-align:center;position:relative;padding:0 1rem}

/* Number circle */
.timeline-num{position:relative;display:flex;justify-content:center;margin-bottom:1.5rem}
.timeline-num-circle{width:40px;height:40px;border-radius:50%;background:var(--bg-primary);border:2px solid var(--amarelo-acre);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:.85rem;font-weight:600;color:var(--amarelo-acre);position:relative;z-index:2;transition:all .4s}
.timeline-stage-v2:hover .timeline-num-circle{background:var(--amarelo-acre);color:#fff;box-shadow:0 0 24px rgba(var(--amarelo-acre-rgb),.3);transform:scale(1.15)}

/* Card */
.timeline-card-v2{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--card-radius);padding:2rem 1.5rem;position:relative;transition:all .4s var(--ease-out);overflow:hidden;text-align:left;width:100%}
.timeline-card-v2::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--amarelo-acre),var(--verde-mundo));opacity:0;transition:opacity .3s}
.timeline-card-v2:hover,.timeline-stage-v2:hover .timeline-card-v2{transform:translateY(-8px);border-color:rgba(var(--amarelo-acre-rgb),.2);box-shadow:0 16px 48px rgba(0,0,0,.08)}
.timeline-card-v2:hover::before,.timeline-stage-v2:hover .timeline-card-v2::before{opacity:1}
.timeline-quote-v2{font-family:var(--font-display);font-style:italic;font-size:1.15rem;font-weight:400;color:var(--verde-mundo);margin-bottom:.75rem;line-height:1.3}
.timeline-card-v2 h4{font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text-muted);margin-bottom:1rem}
.timeline-card-v2 p{font-size:.88rem;line-height:1.7;color:var(--text-secondary)}
.timeline-closing{text-align:center;max-width:700px;margin:4rem auto 0;position:relative;z-index:1}
.timeline-closing p{font-size:1.05rem;line-height:1.7;color:var(--text-secondary)}
.timeline-closing strong{color:var(--verde-mundo);font-weight:600}

/* ============================================================
   SERVICES — TABS (smooth crossfade)
   ============================================================ */
.services-section{padding:var(--section-py) 0;position:relative;overflow:hidden}
.services-section .bg-glow{width:700px;height:700px;background:radial-gradient(circle,rgba(var(--verde-mundo-rgb),.05),transparent 70%);bottom:-200px;right:-200px}
.services-header{max-width:700px;margin-bottom:3.5rem;position:relative;z-index:1}
.tabs-nav{display:flex;gap:.4rem;background:rgba(0,0,0,.03);border:1px solid var(--border);border-radius:50px;padding:5px;margin-bottom:3rem;position:relative;z-index:2;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}
.tabs-nav::-webkit-scrollbar{display:none}
.tab-btn{padding:.65rem 1.5rem;border-radius:50px;font-size:.85rem;font-weight:500;color:var(--text-muted);transition:all .3s var(--ease-out);flex-shrink:0}
.tab-btn:hover{color:var(--text-secondary)}
.tab-btn.active{background:rgba(var(--verde-mundo-rgb),.12);color:var(--verde-mundo);box-shadow:0 2px 10px rgba(var(--verde-mundo-rgb),.08)}

/* Crossfade panels — NO display:none flicker */
.tab-panels{position:relative;z-index:1;min-height:500px}
.tab-panel{position:absolute;top:0;left:0;right:0;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .45s ease,transform .45s var(--ease-out),visibility 0s .45s;display:grid;grid-template-columns:1.2fr 1fr;gap:3rem;align-items:start;pointer-events:none}
.tab-panel.active{position:relative;opacity:1;visibility:visible;transform:translateY(0);transition:opacity .45s ease,transform .45s var(--ease-out),visibility 0s 0s;pointer-events:all;overflow:visible}

.service-detail{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--card-radius-lg);padding:2.5rem;position:relative}
.service-detail h3{font-family:var(--font-display);font-size:1.6rem;font-weight:500;margin-bottom:.75rem;color:var(--text-primary)}
.service-detail h3 em{font-style:italic;font-weight:300}
.service-detail>p{font-size:.95rem;color:var(--text-secondary);line-height:1.7;margin-bottom:2rem}
.service-list{display:flex;flex-direction:column;gap:.75rem}
.service-list-item{display:flex;align-items:flex-start;gap:.75rem;padding:.85rem 1rem;border-radius:var(--card-radius-sm);background:rgba(255,255,255,.4);border:1px solid var(--border-subtle);transition:all .25s}
.service-list-item:hover{background:rgba(var(--verde-mundo-rgb),.06);border-color:rgba(var(--verde-mundo-rgb),.12)}
.service-check{flex-shrink:0;width:20px;height:20px;border-radius:6px;background:rgba(var(--verde-mundo-rgb),.12);display:flex;align-items:center;justify-content:center;margin-top:1px}
.service-check svg{width:12px;height:12px;color:var(--verde-mundo)}
.service-list-item span{font-size:.9rem;color:var(--text-secondary);line-height:1.5}

.service-visual{position:relative;overflow:visible;min-height:400px;display:flex;align-items:center;justify-content:center}
.service-visual-card{width:100%;max-width:360px;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:var(--card-radius);overflow:hidden;position:relative;z-index:1;box-shadow:0 8px 32px rgba(0,0,0,.06)}
.visual-card-header{padding:1.5rem;border-bottom:1px solid rgba(0,0,0,.05)}
.visual-card-header h4{font-family:var(--font-display);font-size:1rem;font-weight:500;margin-bottom:.25rem;color:var(--text-primary)}
.visual-card-header p{font-size:.75rem;color:var(--text-muted)}
.visual-card-body{padding:1.5rem;display:flex;flex-direction:column;gap:.6rem}
.visual-item{display:flex;align-items:center;gap:.65rem;padding:.6rem .75rem;border-radius:10px;font-size:.82rem;color:var(--text-secondary)}
.visual-item.done{background:rgba(var(--verde-mundo-rgb),.06);color:var(--text-primary)}
.visual-item-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;background:rgba(0,0,0,.1)}
.visual-item.done .visual-item-dot{background:var(--verde-mundo)}
.visual-card-footer{padding:1.25rem 1.5rem;border-top:1px solid rgba(0,0,0,.05);display:flex;justify-content:space-between;align-items:center}
.visual-card-footer span{font-size:.75rem;color:var(--text-muted)}
.progress-bar{width:100px;height:4px;border-radius:4px;background:rgba(0,0,0,.06);overflow:hidden}
.progress-fill{height:100%;border-radius:4px;background:var(--verde-mundo);transition:width .5s var(--ease-out)}
.svc-float{position:absolute;z-index:20;padding:.7rem 1rem;background:rgba(255,255,255,.85);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(0,0,0,.08);border-radius:var(--card-radius-sm);box-shadow:0 8px 24px rgba(0,0,0,.06);animation:float 5s ease-in-out infinite}
.svc-float--1{top:-10px;right:-20px}
.svc-float--2{bottom:20px;left:-30px;animation-delay:-2.5s}

/* ============================================================
   PREMIUM / IMERSÃO — Two-column clean layout
   ============================================================ */
.premium-section{padding:var(--section-py) 0;position:relative}
.premium-card{background:linear-gradient(145deg,rgba(var(--verde-escuro-rgb),.97),rgba(var(--verde-escuro-rgb),.88));border:1px solid rgba(var(--dourado-rgb),.15);border-radius:var(--card-radius-lg);padding:clamp(1.5rem,5vw,4rem);position:relative;overflow:hidden;word-wrap:break-word;overflow-wrap:break-word}
.premium-card::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 20% 80%,rgba(var(--dourado-rgb),.04),transparent 50%),radial-gradient(circle at 80% 20%,rgba(var(--verde-mundo-rgb),.06),transparent 50%);pointer-events:none}
.premium-card::after{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(var(--dourado-rgb),.3),transparent)}
.premium-inner{position:relative;z-index:1}

/* Audience highlight */
.premium-audience{display:flex;gap:.75rem;margin-bottom:2rem;flex-wrap:wrap}
.premium-audience-tag{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem 1rem;background:rgba(var(--dourado-rgb),.1);border:1px solid rgba(var(--dourado-rgb),.2);border-radius:50px;font-size:.78rem;font-weight:600;color:var(--dourado)}
.premium-audience-tag svg{width:14px;height:14px;flex-shrink:0}

.premium-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .9rem;background:rgba(var(--dourado-rgb),.12);border:1px solid rgba(var(--dourado-rgb),.25);border-radius:50px;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--dourado);margin-bottom:1.25rem}
.premium-badge svg{width:14px;height:14px}
.premium-title{font-family:var(--font-display);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:500;line-height:1.15;color:#fff;margin-bottom:1.25rem}
.premium-title em{font-style:italic;font-weight:300;color:var(--dourado)}
.premium-desc{font-size:1rem;line-height:1.75;color:rgba(255,255,255,.7);margin-bottom:2.5rem;max-width:700px}

/* Two-column layout: list on left, details on right */
.premium-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.premium-list{display:flex;flex-direction:column;gap:.65rem}
.premium-list-item{display:flex;align-items:flex-start;gap:.75rem;font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.5;padding:.6rem .8rem;border-radius:var(--card-radius-sm);transition:background .3s}
.premium-list-item:hover{background:rgba(255,255,255,.05)}
.premium-list-item .prem-check{flex-shrink:0;width:20px;height:20px;border-radius:6px;background:rgba(var(--dourado-rgb),.15);display:flex;align-items:center;justify-content:center;margin-top:2px}
.premium-list-item .prem-check svg{width:12px;height:12px;color:var(--dourado)}

.premium-right{display:flex;flex-direction:column;gap:1.25rem}
.premium-what-i-do{padding:1.5rem;background:rgba(var(--dourado-rgb),.06);border:1px solid rgba(var(--dourado-rgb),.12);border-radius:var(--card-radius)}
.premium-what-i-do h4{font-family:var(--font-display);font-size:1rem;font-weight:500;color:var(--dourado);margin-bottom:1rem}
.premium-what-i-do p{font-size:.85rem;color:rgba(255,255,255,.65);line-height:1.6}
.premium-what-i-do p strong{color:rgba(255,255,255,.9)}

.premium-note{background:rgba(0,0,0,.15);border:1px solid rgba(255,255,255,.06);border-radius:var(--card-radius);padding:1.25rem 1.5rem}
.premium-note p{font-size:.9rem;line-height:1.7;color:rgba(255,255,255,.55);font-style:italic}
.premium-note strong{color:rgba(255,255,255,.85);font-weight:600;font-style:normal}

.premium-cta-area{margin-top:.5rem}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section{padding:var(--section-py) 0;position:relative;overflow:hidden}
.about-section .bg-glow{width:600px;height:600px;background:radial-gradient(circle,rgba(var(--verde-mundo-rgb),.04),transparent 70%);top:50%;right:-200px;transform:translateY(-50%)}
.about-inner{display:grid;grid-template-columns:340px 1fr;gap:4rem;align-items:start;position:relative;z-index:1}
.about-photo-area{position:relative}
.about-photo{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:center top;border-radius:var(--card-radius-lg);box-shadow:0 24px 64px rgba(0,0,0,.1)}
.about-float-card{position:absolute;z-index:10;background:rgba(255,255,255,.85);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(0,0,0,.08);border-radius:var(--card-radius-sm);padding:.75rem 1rem;box-shadow:0 8px 24px rgba(0,0,0,.08)}
.about-float-card--1{bottom:-20px;right:-30px;animation:float 6s ease-in-out infinite}
.about-float-card--2{top:30px;left:-30px;animation:float 6s ease-in-out infinite;animation-delay:-3s}
.about-content{font-size:1.02rem;line-height:1.8;color:var(--text-secondary)}
.about-content p+p{margin-top:1.25rem}
.about-content strong{color:var(--text-primary);font-weight:600}
.exp-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.exp-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--card-radius);padding:1.5rem;transition:all .3s var(--ease-out)}
.exp-card:hover{transform:translateY(-3px);border-color:rgba(var(--verde-mundo-rgb),.15);box-shadow:0 12px 36px rgba(0,0,0,.06)}
.exp-card h4{font-family:var(--font-display);font-size:1rem;font-weight:500;margin-bottom:.5rem;color:var(--verde-mundo)}
.exp-card p{font-size:.82rem;color:var(--text-muted);line-height:1.5}

/* ============================================================
   NEWSLETTER / O GABINETE — Substack Orange
   ============================================================ */
.newsletter-section{padding:var(--section-py) 0;position:relative}
.newsletter-card{background:#fff;border:1px solid rgba(var(--substack-orange-rgb),.12);border-radius:var(--card-radius-lg);padding:clamp(2.5rem,5vw,4rem);position:relative;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.04)}
.newsletter-card::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 10% 50%,rgba(var(--substack-orange-rgb),.03),transparent 40%);pointer-events:none}
.newsletter-card::after{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--substack-orange),transparent);opacity:.4}
.newsletter-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}

/* Gabinete logo */
.gabinete-logo{margin-bottom:1.5rem}
.gabinete-logo-text{font-family:var(--font-display);font-size:2.2rem;font-weight:700;letter-spacing:-.02em;line-height:1;color:var(--text-primary)}
.gabinete-logo-text .gabinete-o{color:var(--dourado);font-style:italic;font-weight:400}
.gabinete-logo-text .gabinete-dot{color:var(--substack-orange)}
.gabinete-subtitle{font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:var(--text-muted);margin-top:.35rem}

.newsletter-copy h3{font-family:var(--font-display);font-size:clamp(1.4rem,2.5vw,1.8rem);font-weight:500;line-height:1.2;margin-bottom:1.25rem;color:var(--text-primary)}
.newsletter-copy h3 em{font-style:italic;font-weight:300}
.newsletter-copy>p{font-size:.95rem;line-height:1.7;color:var(--text-secondary);margin-bottom:2rem}
.newsletter-cta-area{display:flex;flex-direction:column;gap:.75rem}
.newsletter-cta-area .cta-note{font-size:.8rem;color:var(--text-muted)}

.editions{display:flex;flex-direction:column;gap:1rem}
.edition-card{background:rgba(var(--substack-orange-rgb),.03);border:1px solid rgba(var(--substack-orange-rgb),.08);border-radius:var(--card-radius);padding:1.5rem;transition:all .3s var(--ease-out)}
.edition-card:hover{transform:translateY(-3px);border-color:rgba(var(--substack-orange-rgb),.2);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.edition-tag{display:inline-block;font-size:.65rem;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:var(--substack-orange);padding:.25rem .6rem;background:rgba(var(--substack-orange-rgb),.08);border-radius:50px;margin-bottom:.75rem}
.edition-card h4{font-family:var(--font-display);font-weight:500;font-size:.95rem;margin-bottom:.5rem;color:var(--text-primary)}
.edition-card p{font-size:.82rem;color:var(--text-muted);line-height:1.5}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section{padding:var(--section-py) 0;position:relative;overflow:hidden}
.how-section .bg-glow{width:600px;height:600px;background:radial-gradient(circle,rgba(var(--verde-mundo-rgb),.03),transparent 70%);bottom:-200px;left:50%;transform:translateX(-50%)}
.how-header{text-align:center;max-width:600px;margin:0 auto 2rem;position:relative;z-index:1}
.how-intro{text-align:center;max-width:600px;margin:0 auto 4rem;font-size:.95rem;line-height:1.7;color:var(--text-secondary);position:relative;z-index:1}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1}
.step-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--card-radius);padding:2.5rem 2rem;text-align:center;transition:all .4s var(--ease-out);position:relative;overflow:hidden}
.step-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--verde-mundo),transparent);opacity:0;transition:opacity .3s}
.step-card:hover{transform:translateY(-6px);border-color:rgba(var(--verde-mundo-rgb),.15);box-shadow:0 20px 48px rgba(0,0,0,.06)}
.step-card:hover::before{opacity:1}
.step-number{font-family:var(--font-display);font-size:3rem;font-weight:600;color:rgba(var(--verde-mundo-rgb),.12);line-height:1;margin-bottom:1.25rem}
.step-card h4{font-family:var(--font-display);font-size:1.1rem;font-weight:500;margin-bottom:1rem;color:var(--text-primary)}
.step-card p{font-size:.9rem;line-height:1.65;color:var(--text-secondary)}
.how-cta-area{text-align:center;margin-top:4rem;position:relative;z-index:1}
.how-cta-area .cta-note{display:block;font-size:.82rem;color:var(--text-muted);margin-top:1rem}
.how-cta-area .cta-alt{display:block;margin-top:1.5rem;font-size:.85rem}
.how-cta-area .cta-alt a{color:var(--text-secondary);text-decoration:underline;text-underline-offset:3px;transition:color .2s}
.how-cta-area .cta-alt a:hover{color:var(--verde-mundo)}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{padding:4rem 0 2rem;border-top:1px solid var(--border);position:relative}
.footer-grid{display:grid;grid-template-columns:2fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand p{font-size:.9rem;color:var(--text-secondary);line-height:1.6;margin-top:1rem;max-width:320px}
.footer-brand .footer-logo svg{height:24px;width:auto}
.footer-brand .footer-logo svg path{fill:var(--text-primary)}
.footer-brand .footer-logo svg circle{fill:var(--verde-mundo)}
.footer-col h5{font-family:var(--font-display);font-size:.9rem;font-weight:500;margin-bottom:1.25rem;color:var(--text-primary)}
.footer-col ul{display:flex;flex-direction:column;gap:.6rem}
.footer-col ul li a{font-size:.85rem;color:var(--text-secondary);transition:color .2s}
.footer-col ul li a:hover{color:var(--verde-mundo)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid var(--border-subtle)}
.footer-bottom p{font-size:.78rem;color:var(--text-muted)}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s var(--ease-out),transform .8s var(--ease-out)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}.reveal-delay-2{transition-delay:.2s}.reveal-delay-3{transition-delay:.3s}
.stagger-children .reveal:nth-child(1){transition-delay:0s}
.stagger-children .reveal:nth-child(2){transition-delay:.1s}
.stagger-children .reveal:nth-child(3){transition-delay:.2s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:3rem;text-align:center}
  .hero-copy{max-width:100%;display:flex;flex-direction:column;align-items:center}
  .hero-subheadline{max-width:540px}
  .hero-ctas{justify-content:center}
  .hero-visual{margin-top:2rem}
  .problem-step{grid-template-columns:1fr;gap:2rem}
  .tab-panel,.tab-panel.active{grid-template-columns:1fr}
  .service-visual{min-height:300px}
  .premium-grid{grid-template-columns:1fr;gap:2.5rem}
  .about-inner{grid-template-columns:1fr;gap:3rem}
  .about-photo-area{max-width:340px;margin:0 auto}
  .newsletter-inner{grid-template-columns:1fr;gap:3rem}
  .exp-cards{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-brand{grid-column:span 2}
  .timeline-v2{grid-template-columns:1fr;gap:2rem;max-width:500px;margin:0 auto}
  .timeline-v2::before{display:none}
  .timeline-stage-v2{flex-direction:row;align-items:flex-start;text-align:left;gap:1rem}
  .timeline-num{margin-bottom:0}
}
@media(max-width:640px){
  .nav-wrapper{padding:0 .75rem}
  .navbar{padding:.6rem 1rem;border-radius:12px}
  .nav-links{display:none}.nav-hamburger{display:flex}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:calc(100% + .5rem);left:0;right:0;background:rgba(234,229,223,.95);backdrop-filter:blur(28px);-webkit-backdrop-filter:blur(28px);border:1px solid rgba(0,0,0,.06);border-radius:16px;padding:1.5rem;gap:1rem}
  .hero{padding-top:5rem}
  .hero-copy{padding-top:1rem}
  .section-label{font-size:.65rem}
  .google-mockup{max-width:100%}
  .hero-float-card{display:none}
  .stats-grid{flex-direction:column;gap:2rem}
  .stat-item::after{display:none}.stat-item{padding:0}
  .tabs-nav{gap:.15rem;padding:3px;border-radius:16px}
  .tab-btn{padding:.45rem .75rem;font-size:.72rem;flex-shrink:1;min-width:0;white-space:nowrap}
  .service-detail{padding:1.5rem;border-radius:var(--card-radius)}
  .service-visual{min-height:auto}
  .svc-float{display:none}
  .service-visual-card{max-width:100%}
  .premium-card{padding:1.5rem;border-radius:var(--card-radius)}
  .premium-grid{gap:1.5rem}
  .premium-list-item{padding:.4rem .5rem;font-size:.82rem;gap:.5rem}
  .premium-what-i-do{padding:1rem}
  .premium-what-i-do h4{font-size:.9rem}
  .premium-what-i-do p{font-size:.8rem}
  .premium-note{padding:1rem}
  .premium-note p{font-size:.82rem}
  .premium-desc{font-size:.9rem}
  .premium-cta-area .btn{font-size:.85rem;padding:.8rem 1.5rem}
  .btn-gold{word-wrap:break-word;white-space:normal;text-align:center}
  .newsletter-card{padding:1.5rem;border-radius:var(--card-radius)}
  .steps-grid,.exp-cards{grid-template-columns:1fr}
  .about-float-card{display:none}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:span 1}
  .footer-bottom{flex-direction:column;gap:.75rem;text-align:center}
  .hero-ctas{flex-direction:column;width:100%}
  .btn{justify-content:center;width:100%}
}
