/* ============================================================
   MOBINMIND, DESIGN SYSTEM
   Ink (roxo institucional) + Paper (branco) + Mist (cinza claro)
   Lilac + Gold + Sky como acentos (paleta já usada na marca)
   Type: Poppins (display) + Inter (body)
   ============================================================ */

:root{
  --ink:        #3B1E6B;   /* roxo institucional profundo */
  --ink-soft:   #6A5590;   /* roxo mais claro para texto secundário */
  --paper:      #FFFFFF;
  --mist:       #F6F5FA;   /* cinza claro / seções alternadas */
  --line:       #E4E1F0;   /* divisores sutis */
  --lilac:      #B3BAEA;   /* lavanda */
  --lilac-deep: #8D97DD;
  --gold:       #DBC28E;
  --gold-deep:  #C9A968;
  --sky:        #B7D3E3;   /* azul claro de referência */
  --sky-deep:   #93BBD1;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', -apple-system, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins', sans-serif;
  color:var(--ink);
  line-height:1.15;
  margin:0;
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}

.container{max-width:1180px; margin:0 auto; padding:0 28px;}
.section{padding:110px 0;}
.section-tight{padding:70px 0;}
.section-mist{background:var(--mist);}

.eyebrow{
  font-family:'Inter', sans-serif;
  font-size:13px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold-deep);
  display:block; margin-bottom:14px;
}

.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- NAV ---------- */
nav.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(255,255,255,0.86); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:18px 28px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo{display:flex; align-items:center; gap:10px; font-family:'Poppins'; font-weight:700; font-size:19px;}
.nav-logo svg{width:28px; height:28px; stroke:var(--ink);}
.nav-logo-icon{width:34px; height:34px; border-radius:9px; object-fit:cover;}
.nav-links{display:flex; gap:30px; list-style:none; margin:0; padding:0;}
.nav-links a{font-size:14.5px; font-weight:500; color:var(--ink-soft); transition:color .2s;}
.nav-links a:hover{color:var(--ink);}
.nav-cta{
  background:var(--ink); color:var(--paper); padding:11px 22px; border-radius:999px;
  font-size:14px; font-weight:600; transition:background .2s, transform .2s;
}
.nav-cta:hover{background:var(--lilac-deep); transform:translateY(-1px);}
@media (max-width:900px){ .nav-links{display:none;} }
@media (max-width:480px){
  .nav-cta{font-size:12px; padding:8px 14px; white-space:nowrap;}
  .nav-inner{padding:14px 16px;}
  .nav-logo{font-size:16px;}
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 28px; border-radius:999px; font-weight:600; font-size:15px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{background:var(--ink); color:var(--paper);}
.btn-primary:hover{background:var(--lilac-deep); transform:translateY(-2px); box-shadow:0 10px 24px rgba(28,17,56,0.18);}
.btn-ghost{border:1.5px solid var(--line); color:var(--ink); background:var(--paper);}
.btn-ghost:hover{border-color:var(--ink);}
.btn-gold{background:var(--gold); color:var(--ink);}
.btn-gold:hover{background:var(--gold-deep); transform:translateY(-2px);}
.btn-sm{padding:10px 20px; font-size:13.5px;}
.btn-block{width:100%; justify-content:center;}

/* ---------- ICONS (line, stroke=currentColor) ---------- */
.icon-wrap svg{width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round;}

/* ---------- HERO ---------- */
.hero{padding:180px 0 100px; position:relative; overflow:hidden;}
.hero-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:center;}
@media (max-width:900px){ .hero-grid{grid-template-columns:1fr;} }
.hero h1{font-size:clamp(38px,5.4vw,64px); letter-spacing:-0.02em; margin-bottom:24px;}
.hero p.sub{font-size:19px; color:var(--ink-soft); max-width:540px; margin-bottom:36px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.hero-visual{position:relative; aspect-ratio:1/1;}

/* ---------- JOURNEY CARDS (6 cards) ---------- */
.journey-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:50px;
}
@media (max-width:900px){ .journey-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .journey-grid{grid-template-columns:1fr;} }
.journey-card{
  background:var(--paper); border:1px solid var(--line); border-radius:20px;
  padding:32px 26px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.journey-card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(28,17,56,0.08); border-color:var(--lilac);}
.journey-card .icon-wrap{width:42px; height:42px; color:var(--ink); margin-bottom:18px;}
.journey-card h3{font-size:19px; margin-bottom:10px;}
.journey-card p{font-size:14.5px; color:var(--ink-soft); margin-bottom:20px;}
.journey-card a{font-size:14px; font-weight:600; color:var(--ink); display:inline-flex; align-items:center; gap:6px;}
.journey-card a:hover{color:var(--lilac-deep);}

/* ---------- TIMELINE (organic, not flowchart) ---------- */
.timeline-wrap{position:relative; display:flex; gap:60px; margin-top:60px;}
@media (max-width:900px){ .timeline-wrap{flex-direction:column;} }
.timeline-main{flex:1; position:relative; padding-left:40px;}
.timeline-line{
  position:absolute; left:6px; top:8px; bottom:8px; width:2px;
  background:linear-gradient(to bottom, var(--lilac), var(--gold));
  border-radius:2px;
}
.timeline-step{position:relative; padding-bottom:52px;}
.timeline-step:last-child{padding-bottom:0;}
.timeline-dot{
  position:absolute; left:-40px; top:2px; width:14px; height:14px; border-radius:50%;
  background:var(--paper); border:3px solid var(--ink);
}
.timeline-step h4{font-size:19px; margin-bottom:6px;}
.timeline-step p{font-size:14.5px; color:var(--ink-soft); max-width:420px;}
.timeline-float{
  align-self:flex-start; width:280px; background:var(--ink); color:var(--paper);
  border-radius:20px; padding:30px 26px; position:sticky; top:120px;
}
.timeline-float .icon-wrap{width:34px; height:34px; color:var(--gold); margin-bottom:16px;}
.timeline-float h4{color:var(--gold); font-size:18px; margin-bottom:10px;}
.timeline-float p{color:rgba(255,255,255,0.75); font-size:14px;}
@media (max-width:900px){ .timeline-float{position:static; width:100%;} }

/* ---------- FLOW TREE (interactive, premium) ---------- */
.flow-tree{margin-top:56px;}
.flow-branch-row{display:flex; gap:28px; justify-content:center; flex-wrap:wrap;}
.flow-col{flex:1; min-width:250px; max-width:340px; display:flex; flex-direction:column; gap:14px;}
.flow-node{
  border-radius:16px; padding:18px 18px; cursor:pointer; text-align:center;
  transition:transform .18s ease, box-shadow .18s ease;
  display:flex; flex-direction:column; align-items:center;
}
.flow-node:hover{transform:translateY(-3px); box-shadow:0 12px 26px rgba(28,17,56,0.1);}
.flow-node .icon-wrap{width:30px; height:30px; margin-bottom:8px;}
.flow-node .ft{font-family:'Poppins'; font-weight:700; font-size:15px;}
.flow-node .fs{font-size:12px; opacity:0.75; margin-top:2px;}
.flow-node.cat{background:var(--sky); color:var(--ink);}
.flow-node.dark{background:var(--ink); color:var(--paper);}
.flow-node.dark .fs{color:var(--gold);}
.flow-node.lilac{background:var(--lilac); color:var(--ink);}
.flow-node.gold{background:var(--gold); color:var(--ink);}
.flow-node.outline{background:var(--paper); border:2px solid var(--ink); color:var(--ink);}
.flow-panel{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.flow-panel.open{max-height:140px;}
.flow-panel p{background:var(--mist); border-radius:12px; padding:14px 16px; font-size:13.5px; color:var(--ink-soft); margin-top:-2px;}
.flow-final{max-width:360px; margin:36px auto 0; text-align:center; display:flex; flex-direction:column; align-items:center;}
.flow-final .flow-node{width:100%;}
@media (max-width:900px){ .flow-branch-row{flex-direction:column; align-items:center;} .flow-col{max-width:420px;} }

/* ---------- METHOD (5 cards) ---------- */
.method-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:20px; margin-top:50px;}
@media (max-width:1000px){ .method-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .method-grid{grid-template-columns:1fr;} }
.method-card{text-align:center; padding:26px 16px;}
.method-card .icon-wrap{width:40px; height:40px; margin:0 auto 16px; color:var(--ink);}
.method-card h4{font-size:16px; margin-bottom:8px;}
.method-card p{font-size:13.5px; color:var(--ink-soft);}

/* ---------- PROGRAM GRID ---------- */
.program-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:50px;}
@media (max-width:900px){ .program-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .program-grid{grid-template-columns:1fr;} }
.program-card{
  border-radius:22px; overflow:hidden; border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.program-card:hover{transform:translateY(-4px); box-shadow:0 18px 36px rgba(28,17,56,0.1);}
.program-card .thumb{height:120px; display:flex; align-items:center; justify-content:center;}
.program-card .thumb .icon-wrap{width:44px; height:44px; color:var(--paper);}
.program-card .body{padding:24px;}
.program-card h4{font-size:18px; margin-bottom:8px;}
.program-card p{font-size:14px; color:var(--ink-soft); margin-bottom:18px;}
.thumb-ink{background:var(--ink);}
.thumb-lilac{background:var(--lilac);}
.thumb-lilac .icon-wrap{color:var(--ink);}
.thumb-gold{background:var(--gold);}
.thumb-gold .icon-wrap{color:var(--ink);}
.thumb-sky{background:var(--sky);}
.thumb-sky .icon-wrap{color:var(--ink);}

/* ---------- ESCOLAS/EMPRESAS ---------- */
.split-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:50px;}
@media (max-width:800px){ .split-grid{grid-template-columns:1fr;} }
.split-card{
  border-radius:24px; padding:44px 36px; min-height:260px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.split-card h3{font-size:26px; margin-bottom:12px;}
.split-card p{font-size:15px; margin-bottom:22px;}
.split-card.dark{background:var(--ink); color:var(--paper);}
.split-card.dark p{color:rgba(255,255,255,0.75);}
.split-card.light{background:var(--mist); color:var(--ink);}
.split-card.light p{color:var(--ink-soft);}

/* ---------- ABOUT ---------- */
.about-grid{display:grid; grid-template-columns:0.75fr 1.25fr; gap:56px; align-items:center;}
@media (max-width:860px){ .about-grid{grid-template-columns:1fr;} }
.about-photo{aspect-ratio:4/5; border-radius:24px; background:linear-gradient(155deg, var(--lilac), var(--ink)); position:relative;}
.about-photo span{
  position:absolute; bottom:22px; left:22px; font-family:'Poppins'; font-weight:700;
  font-size:15px; color:var(--paper); background:rgba(28,17,56,0.4); padding:8px 14px; border-radius:999px;
}
.about-cred{display:flex; gap:24px; margin-top:26px; flex-wrap:wrap;}
.about-cred div{font-size:12px; font-weight:600; color:var(--ink-soft); border-top:2px solid var(--gold); padding-top:8px; min-width:120px;}

/* ---------- TESTIMONIALS ---------- */
.testi-track{display:flex; gap:24px; overflow-x:auto; padding:50px 4px 10px; scroll-snap-type:x mandatory;}
.testi-card{
  min-width:320px; scroll-snap-align:start; background:var(--mist); border-radius:20px; padding:28px;
}
.testi-card .tag{font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold-deep); margin-bottom:14px; display:block;}
.testi-card p{font-size:15px; color:var(--ink-soft); font-style:italic; margin-bottom:16px;}
.testi-card .name{font-size:13.5px; font-weight:700; color:var(--ink);}
.testi-placeholder{font-size:12px; color:#B8B3D6; margin-top:6px;}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
.faq-q{display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:'Poppins'; font-weight:600; font-size:16.5px;}
.faq-q .plus{font-size:22px; color:var(--gold-deep); transition:transform .25s ease;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-item.open .faq-a{max-height:200px;}
.faq-a p{padding-top:14px; font-size:14.5px; color:var(--ink-soft); max-width:700px;}

/* ---------- FOOTER ---------- */
footer{background:var(--ink); color:rgba(255,255,255,0.65); padding:70px 0 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px;}
@media (max-width:800px){ .footer-grid{grid-template-columns:repeat(2,1fr);} }
.footer-col h5{color:var(--paper); font-size:14px; margin-bottom:16px; font-family:'Poppins'; font-weight:600;}
.footer-col a{display:block; font-size:13.5px; margin-bottom:10px; color:rgba(255,255,255,0.6); transition:color .2s;}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.12); padding-top:24px; font-size:12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* ---------- LANDING PAGE COMPONENTS ---------- */
.landing-hero{padding:170px 0 80px;}
.landing-hero .tag{
  display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold-deep); background:var(--mist); padding:8px 16px; border-radius:999px; margin-bottom:22px;
}
.landing-hero h1{font-size:clamp(32px,4.6vw,52px); max-width:780px; margin-bottom:22px;}
.landing-hero .sub{font-size:18px; color:var(--ink-soft); max-width:640px; margin-bottom:32px;}

.two-col{display:grid; grid-template-columns:1fr 1fr; gap:50px;}
@media (max-width:860px){ .two-col{grid-template-columns:1fr;} }

.check-list{list-style:none; margin:0; padding:0;}
.check-list li{
  display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); font-size:15px; color:var(--ink-soft);
}
.check-list li:last-child{border-bottom:none;}
.check-list .dot{width:8px; height:8px; border-radius:50%; background:var(--gold-deep); margin-top:7px; flex-shrink:0;}

.steps-row{display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:24px; margin-top:20px;}
.step-card{background:var(--mist); border-radius:18px; padding:24px;}
.step-card .num{font-family:'Poppins'; font-weight:800; font-size:26px; color:var(--lilac-deep); margin-bottom:10px;}
.step-card h4{font-size:16px; margin-bottom:6px;}
.step-card p{font-size:13.5px; color:var(--ink-soft);}

.pricing-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; margin-top:20px;}
.price-card{
  border:1.5px solid var(--line); border-radius:22px; padding:30px 26px; background:var(--paper);
  transition:border-color .2s ease, transform .2s ease;
}
.price-card:hover{border-color:var(--lilac); transform:translateY(-3px);}
.price-card .plabel{font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--gold-deep); margin-bottom:10px; display:block;}
.price-card h4{font-size:20px; margin-bottom:14px;}
.price-card .pval{font-family:'Poppins'; font-weight:800; font-size:30px; margin-bottom:4px;}
.price-card .pnote{font-size:12.5px; color:var(--ink-soft); margin-bottom:20px;}

.cta-banner{
  background:var(--ink); border-radius:28px; padding:60px 44px; text-align:center; margin-top:20px;
}
.cta-banner h2{color:var(--paper); font-size:clamp(24px,3.2vw,32px); margin-bottom:14px;}
.cta-banner p{color:rgba(255,255,255,0.7); max-width:480px; margin:0 auto 26px; font-size:15.5px;}
.cta-btns{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

.scope-box{
  background:var(--mist); border-left:4px solid var(--gold); border-radius:0 16px 16px 0;
  padding:26px 28px; font-size:14.5px; color:var(--ink-soft); line-height:1.7;
}
.scope-box strong{color:var(--ink);}

/* dark theme override for Cérebro de Elite */
.dark-page{background:var(--ink); color:#F2F0FA;}
.dark-page h1, .dark-page h2, .dark-page h3, .dark-page h4{color:#FFFFFF;}
.dark-page .sub, .dark-page p{color:#C7C2E0;}
.dark-page .check-list li{color:#C7C2E0; border-color:#3A3060;}
.dark-page .step-card{background:#2A2050;}
.dark-page .step-card p{color:#C7C2E0;}
.dark-page .price-card{background:#2A2050; border-color:#453A70;}
.dark-page .price-card h4, .dark-page .price-card .pval{color:#FFFFFF;}
.dark-page .eyebrow{color:var(--gold);}
.dark-page nav.site-nav{background:#150C2E; border-bottom-color:#3A3060;}
.dark-page .nav-logo, .dark-page .nav-links a{color:#FFFFFF;}
.dark-page .nav-cta{background:var(--gold); color:var(--ink);}
.dark-page .price-card .pnote{color:#C7C2E0;}
.dark-page .btn-ghost{background:transparent; color:#FFFFFF; border-color:#5C5290;}
.dark-page .btn-ghost:hover{background:#2A2050; border-color:#FFFFFF;}

/* ---------- BOOKING (Psicoterapia) ---------- */
.booking-card{
  background:var(--paper); border:1px solid var(--line); border-radius:24px;
  padding:40px; box-shadow:0 20px 50px rgba(28,17,56,0.08);
}
.booking-steps{display:flex; gap:10px; margin-bottom:30px;}
.booking-step-dot{
  flex:1; height:4px; border-radius:4px; background:var(--line);
}
.booking-step-dot.active{background:var(--ink);}
.slot-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:20px 0 28px;}
@media (max-width:560px){ .slot-grid{grid-template-columns:repeat(2,1fr);} }
.slot{
  border:1.5px solid var(--line); border-radius:12px; padding:12px 8px; text-align:center;
  font-size:13.5px; font-weight:600; cursor:pointer; transition:all .2s ease;
}
.slot:hover{border-color:var(--lilac);}
.slot.selected{background:var(--ink); color:var(--paper); border-color:var(--ink);}
.booking-summary{background:var(--mist); border-radius:14px; padding:18px 20px; margin-bottom:22px; font-size:14px; display:none;}
.booking-summary.show{display:block;}
.booking-summary b{color:var(--ink);}
