/* ============================================
   Solutions Idiomas — redesign
   Paleta oficial da marca: azul/indigo (logo), vermelho (Union Jack),
   coral (mascote "Foca no Inglês"), creme (fundo)
   ============================================ */

:root{
  --verde: #2A2172;       /* azul indigo da marca */
  --verde-escuro: #19144A;
  --verde-claro: #E9E5F7;
  --coral: #D00000;       /* vermelho da marca (CTAs) */
  --coral-escuro: #A30000;
  --dourado: #F25E5E;     /* coral do mascote Foca */
  --creme: #FBF6EE;
  --branco: #FFFFFF;
  --texto: #29263A;
  --texto-suave: #635F72;
  --borda: #E4DEEE;
  --radius: 16px;
  --sombra: 0 10px 30px rgba(42,33,114,0.10);
  --maxw: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--texto);
  background:var(--creme);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  color:var(--verde-escuro);
  line-height:1.2;
  margin:0 0 .5em;
  font-weight:600;
}

h1{font-size:clamp(2.1rem,4vw,3.2rem);}
h2{font-size:clamp(1.6rem,3vw,2.3rem);}
h3{font-size:1.35rem;}
p{margin:0 0 1em; color:var(--texto);}
a{color:inherit;}
img{max-width:100%;display:block;}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--coral-escuro);
  background:rgba(208,0,0,.08);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.02em;
  text-decoration:none;
  padding:14px 28px;
  border-radius:999px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  border:2px solid transparent;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--coral); color:var(--branco); box-shadow:0 8px 20px rgba(208,0,0,.3);}
.btn-primary:hover{background:var(--coral-escuro);}
.btn-outline{background:transparent; border-color:var(--branco); color:var(--branco);}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.btn-outline-dark{background:transparent; border-color:var(--verde); color:var(--verde);}
.btn-outline-dark:hover{background:var(--verde); color:var(--branco);}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,246,238,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--borda);
}
.nav-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:3px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.brand img{height:117px; width:auto;}
.brand-home img{height:117px;}
.brand span{font-family:'Fraunces',serif; font-weight:700; font-size:1.25rem; color:var(--verde-escuro); letter-spacing:.01em;}
.footer-brand img{height:44px; width:auto;}

.main-nav{display:flex; align-items:center; gap:6px;}
.main-nav a{
  text-decoration:none;
  color:var(--texto);
  font-weight:600;
  font-size:.95rem;
  padding:10px 16px;
  border-radius:999px;
  transition:background .15s, color .15s;
}
.main-nav a:hover{background:var(--verde-claro); color:var(--verde-escuro);}
.main-nav a.active{background:var(--verde); color:var(--branco);}
.nav-cta{margin-left:8px;}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px; height:40px;
  background:transparent;
  border:none;
  border-radius:8px;
  cursor:pointer;
  padding:8px;
  flex-shrink:0;
}
.nav-toggle:hover{background:var(--verde-claro);}
.nav-toggle span{
  display:block;
  height:2px;
  width:22px;
  background:var(--verde-escuro);
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(180deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color:var(--branco);
  padding:76px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(242,94,94,.28), transparent 55%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
  position:relative;
}
.hero h1{color:var(--branco);}
.hero p.lead{font-size:1.15rem; color:rgba(255,255,255,.85); max-width:50ch;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:28px;}
.hero-media{position:relative;}
.hero-media img{
  border-radius:var(--radius);
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

/* ---------- Sections ---------- */
section{padding:78px 0;}
.section-tight{padding:48px 0;}
.section-alt{background:var(--branco);}
.section-center{text-align:center;}
.section-lead{max-width:70ch; margin:0 auto 8px;}

/* ---------- Feature / image grid ---------- */
.grid{display:grid; gap:24px;}
.grid-2{grid-template-columns:1fr 1fr;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.media-card{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--sombra);
  background:var(--branco);
}
.media-card img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3;}
.media-card{margin:0;}
.media-card figcaption{
  padding:14px 18px;
  font-size:.92rem;
  font-weight:600;
  color:var(--verde-escuro);
}
.audience-image-card{display:flex; flex-direction:column;}
.audience-image-card .image-crop{aspect-ratio:8/3; overflow:hidden; background:var(--verde-claro);}
.audience-image-card .image-crop img{width:100%; height:auto; aspect-ratio:auto; object-fit:initial; transform:translateY(0);}
.audience-image-card figcaption{flex:1; font-weight:400; line-height:1.55;}
.audience-image-card figcaption strong{color:var(--verde-escuro); font-weight:800;}

.quote-card{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--sombra);
  background:var(--branco);
  border:1px solid var(--borda);
}
.quote-card img{width:100%; display:block;}
.quote-card figcaption{
  padding:14px 18px;
  font-size:.92rem;
  font-weight:600;
  color:var(--verde-escuro);
  font-style:italic;
}
.quote-card{margin:0;}

/* ---------- Split layout (text + image) ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.split.reverse .split-media{order:2;}
.split-media img{border-radius:var(--radius); box-shadow:var(--sombra);}
.split-media.stack{display:grid; gap:20px; grid-template-columns:1fr 1fr;}

/* ---------- Cards (pillars / why-us) ---------- */
.pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.pillar-card{
  background:var(--branco);
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:var(--sombra);
  border-top:4px solid var(--coral);
}
.pillar-letter{
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--verde);
  color:var(--branco);
  font-family:'Fraunces',serif;
  font-size:1.5rem; font-weight:700;
  margin-bottom:18px;
}
.pillar-card img{border-radius:12px; margin-top:16px;}

.why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
.why-card{
  background:var(--branco);
  border:1px solid var(--borda);
  border-radius:var(--radius);
  padding:26px 28px;
}
.why-card h3{font-size:1.1rem; margin-bottom:8px; color:var(--verde-escuro);}
.why-card p{color:var(--texto-suave); margin:0; font-size:.97rem;}

.audience-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.audience-card{
  background:var(--branco);
  border:1px solid var(--borda);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--sombra);
}
.audience-card .btn{margin-top:10px;}
.schedule-list{margin:20px 0 0; padding-left:20px; columns:2; column-gap:28px;}
.schedule-list li{margin-bottom:6px; break-inside:avoid;}

/* ---------- Teacher profile ---------- */
.teacher{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:44px;
  align-items:start;
  padding:44px 0;
}
.teacher + .teacher{border-top:1px solid var(--borda);}
.teacher-photo img{border-radius:var(--radius); box-shadow:var(--sombra); width:100%; height:auto; display:block;}
.teacher-body h3{margin-bottom:4px;}
.teacher-stats{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:16px; padding:0; list-style:none;
}
.teacher-stats li{
  background:var(--verde-claro);
  color:var(--verde-escuro);
  font-size:.85rem;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
}
.teacher-quote{
  margin-top:18px;
  padding:20px 22px;
  background:var(--verde-claro);
  border-left:4px solid var(--verde);
  border-radius:0 12px 12px 0;
  font-style:italic;
  color:var(--verde-escuro);
  font-size:1.02rem;
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(135deg, var(--dourado) 0%, var(--coral) 100%);
  color:var(--branco);
  border-radius:24px;
  padding:56px 48px;
  text-align:center;
  position:relative;
  overflow:visible;
}
.cta-banner h2{color:var(--branco);}
.cta-banner p{color:rgba(255,255,255,.9); max-width:60ch; margin:0 auto 24px;}
.cta-mascot{
  width:96px; height:96px;
  border-radius:50%;
  background:var(--branco);
  padding:8px;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
  margin:0 auto 18px;
}
.cta-mascot img{border-radius:50%;}

/* ---------- Blog ---------- */
.post-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.post-card{
  background:var(--branco);
  border:1px solid var(--borda);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--sombra);
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  transition:transform .15s ease;
}
.post-card:hover{transform:translateY(-3px);}
.post-date{font-size:.82rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--coral);}
.post-card h3{margin-bottom:0;}
.post-card p{color:var(--texto-suave); margin-bottom:0; font-size:.97rem;}
.post-readmore{margin-top:auto; font-weight:700; color:var(--verde); font-size:.92rem;}

.video-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.video-card{
  display:flex; flex-direction:column;
  text-decoration:none;
  background:var(--branco);
  border:1px solid var(--borda);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--sombra);
  transition:transform .15s ease;
}
.video-card:hover{transform:translateY(-3px);}
.video-thumb{position:relative; width:100%; aspect-ratio:16/9; background:var(--verde-claro);}
.video-thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.video-card .video-icon{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:48px; height:48px;
  border-radius:50%;
  background:rgba(208,0,0,.92);
  color:var(--branco);
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
}
.video-card h3{font-size:1rem; margin:0; padding:14px 16px 18px;}
.video-card.video-card-more{align-items:center; justify-content:center; min-height:100%; box-shadow:none; border-style:dashed;}
.video-card.video-card-more .video-icon{position:static; transform:none; margin:20px auto 0;}
.video-card.video-card-more h3{text-align:center; padding:0 16px 20px;}

/* ---------- Article body (long-form) ---------- */
.article-body{max-width:70ch; margin:0 auto;}
.article-body h2{font-size:1.5rem; margin-top:1.6em;}
.article-body h3{font-size:1.2rem; margin-top:1.4em;}
.article-body p{margin-bottom:1.2em; line-height:1.75;}
.article-body ul{padding-left:1.3em; margin-bottom:1.2em;}
.article-body li{margin-bottom:.6em; line-height:1.6;}
.article-meta{color:var(--texto-suave); font-size:.9rem; margin-bottom:8px;}
.back-link{display:inline-flex; align-items:center; gap:6px; font-weight:700; color:var(--verde); text-decoration:none; margin-bottom:24px;}
.back-link:hover{color:var(--coral);}

/* ---------- Form page ---------- */
.form-wrap{
  background:var(--branco);
  border-radius:var(--radius);
  box-shadow:var(--sombra);
  padding:8px;
  overflow:hidden;
}
.form-wrap iframe{width:100%; height:1200px; border:0; display:block;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--verde-escuro);
  color:rgba(255,255,255,.75);
  padding:48px 0 28px;
  margin-top:40px;
}
.site-footer .brand img{height:88px !important; width:auto;}
.footer-inner{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;}
.social-links{display:flex; gap:14px;}
.social-links a{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  transition:background .15s;
}
.social-links a:hover{background:var(--coral);}
.social-links svg{width:21px; height:21px; fill:currentColor;}
.social-links a[aria-label="WhatsApp"] img,
.social-links a[aria-label="WhatsApp"] svg{transform:scale(1.25);}
.social-links a{color:var(--branco);}
.footer-copy{font-size:.85rem; color:rgba(255,255,255,.55); margin-top:18px; text-align:center;}
.footer-copy .studio-credit{font:inherit; color:inherit; white-space:nowrap;}

/* ---------- Área do aluno ---------- */
.student-page{min-height:100vh;}
.student-back{font-weight:700;color:var(--verde);text-decoration:none;}
.student-back:hover{color:var(--coral);}
.student-hero{padding:46px 0;background:linear-gradient(135deg,var(--verde) 0%,var(--verde-escuro) 100%);}
.student-hero-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;}
.student-hero h1,.student-hero p{color:var(--branco);}
.student-hero h1{margin-bottom:10px;}
.student-hero .eyebrow{color:var(--branco);background:rgba(255,255,255,.13);}
.student-hero-inner>img{width:116px;height:116px;object-fit:cover;border-radius:50%;border:6px solid rgba(255,255,255,.85);}
.student-access-section{padding-top:56px;}
.student-login-card{max-width:860px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;background:var(--branco);border:1px solid var(--borda);border-radius:24px;box-shadow:var(--sombra);overflow:hidden;}
.student-login-copy{padding:48px;background:var(--verde-claro);display:flex;flex-direction:column;justify-content:center;}
.student-login-form{padding:48px;display:flex;flex-direction:column;gap:10px;}
.student-login-form label{font-weight:700;color:var(--verde-escuro);font-size:.92rem;}
.student-login-form input{width:100%;border:1px solid var(--borda);border-radius:12px;padding:14px 16px;font:inherit;color:var(--texto);background:#fff;outline:none;}
.student-login-form input:focus{border-color:var(--verde);box-shadow:0 0 0 3px rgba(42,33,114,.12);}
.student-login-form>.btn{justify-content:center;margin-top:8px;}
.password-field{position:relative;}.password-field input{padding-right:82px;}.password-field button{position:absolute;right:10px;top:50%;transform:translateY(-50%);border:0;background:transparent;color:var(--verde);font-weight:700;cursor:pointer;padding:8px;}
.login-help{font-size:.82rem;color:var(--texto-suave);margin:8px 0 0;}.login-message{min-height:1.5em;color:var(--coral-escuro);font-size:.9rem;font-weight:700;margin:0;}
.dashboard-heading,.student-section-title{display:flex;justify-content:space-between;align-items:center;gap:24px;}.dashboard-heading{margin-bottom:24px;}
.student-notice{background:var(--verde-claro);border-left:4px solid var(--verde);border-radius:0 12px 12px 0;padding:18px 20px;margin-bottom:48px;font-weight:600;color:var(--verde-escuro);}
.student-section-title{margin:46px 0 20px;}.student-section-title .eyebrow{margin-bottom:8px;}.student-section-title h2,.student-section-title p{margin-bottom:0;}
.student-feature-card{display:flex;align-items:center;justify-content:space-between;gap:28px;background:var(--branco);border:1px solid var(--borda);border-radius:var(--radius);box-shadow:var(--sombra);padding:30px;}.student-card-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.student-resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}.student-resource-card{display:flex;flex-direction:column;background:var(--branco);border:1px solid var(--borda);border-radius:var(--radius);padding:26px;box-shadow:var(--sombra);}.student-resource-card p{color:var(--texto-suave);}.student-resource-card .resource-meta{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800;color:var(--coral-escuro);}.student-resource-card .btn{margin-top:auto;justify-content:center;padding:11px 18px;}[hidden]{display:none !important;}
.student-resource-image{display:block;width:calc(100% + 52px);max-width:none;aspect-ratio:1/1;object-fit:cover;margin:-26px -26px 22px;border-radius:var(--radius) var(--radius) 0 0;}

/* ---------- Regulamentos ---------- */
.regulation-content{padding-top:58px;}.regulation-layout{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr);gap:38px;align-items:start;}.regulation-article,.benefits-panel{background:var(--branco);border:1px solid var(--borda);border-radius:24px;box-shadow:var(--sombra);padding:40px;}.regulation-article>p{font-size:1.05rem;}.regulation-block{padding:24px 0;border-top:1px solid var(--borda);}.regulation-block h3,.regulation-block p{margin-bottom:6px;}.regulation-photo{height:260px;overflow:hidden;border-radius:var(--radius);margin:28px 0;background:var(--verde-claro);}.regulation-photo img{width:100%;height:100%;object-fit:cover;object-position:center;}.regulation-callout{margin-top:22px;padding:24px;border-radius:var(--radius);background:var(--verde-claro);border-left:5px solid var(--verde);}.regulation-callout p{margin-bottom:0;}.benefits-panel{position:sticky;top:158px;}.benefits-list{list-style:none;padding:0;margin:24px 0;display:grid;gap:14px;}.benefits-list li{padding:18px;border-radius:14px;background:var(--verde-claro);display:grid;gap:4px;}.benefits-list strong{font-family:'Fraunces',Georgia,serif;color:var(--verde-escuro);font-size:1.17rem;}.benefits-list span{color:var(--texto-suave);font-size:.92rem;}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:105px;
  z-index:80;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
  transition:transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover{transform:translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.3);}
.whatsapp-float svg{width:31.25px; height:31.25px; fill:currentColor;}
.nav-cta{display:none !important;}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{order:-1;}
  .split{grid-template-columns:1fr; gap:32px;}
  .split.reverse .split-media{order:0;}
  .grid-3, .grid-4{grid-template-columns:repeat(2,1fr);}
  .pillars{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .audience-grid{grid-template-columns:1fr;}
  .teacher{grid-template-columns:1fr;}
  .teacher-photo{max-width:260px;}
  .student-login-card{grid-template-columns:1fr;}.student-resource-grid{grid-template-columns:1fr 1fr;}.student-feature-card{align-items:flex-start;flex-direction:column;}.regulation-layout{grid-template-columns:1fr;}.benefits-panel{position:static;}

  .nav-wrap{position:relative;}
  .main-nav{
    display:none;
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
    background:var(--creme);
    border:1px solid var(--borda);
    border-top:none;
    box-shadow:var(--sombra);
    padding:10px;
    border-radius:0 0 16px 16px;
  }
  .main-nav.open{display:flex;}
  .main-nav a{padding:12px 14px;}
  .main-nav a.active{background:var(--verde); color:var(--branco);}
  .nav-cta{margin-left:0; margin-top:6px; justify-content:center;}
  .nav-toggle{display:flex;}
}
@media (max-width:600px){
  .grid-2, .grid-3, .grid-4{grid-template-columns:1fr;}
  .post-grid{grid-template-columns:1fr;}
  .video-grid{grid-template-columns:1fr;}
  section{padding:56px 0;}
  .cta-banner{padding:40px 24px;}
  .footer-inner{flex-direction:column; text-align:center;}
  .schedule-list{columns:1;}
  .brand img,.brand-home img{height:96px;}
  .site-footer .brand img{height:76px !important;}
  .whatsapp-float{right:14px;bottom:96px;width:44px;height:44px;}
  .student-hero-inner>img{width:82px;height:82px;}.student-login-copy,.student-login-form{padding:30px 24px;}.student-resource-grid{grid-template-columns:1fr;}.dashboard-heading,.student-section-title{align-items:flex-start;flex-direction:column;}.student-card-actions{width:100%;}.student-card-actions .btn{width:100%;justify-content:center;}.regulation-article,.benefits-panel{padding:28px 22px;}.regulation-photo{height:210px;}.student-back{font-size:.82rem;}
}
@media (max-width:900px){
  .video-grid{grid-template-columns:repeat(2,1fr);}
}
/* Página de link direto: Kickstart */
.kickstart-hero{background:#2e4194;color:#fff;overflow:hidden}
.kickstart-hero-grid{min-height:640px;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);align-items:center;gap:2rem}
.kickstart-hero-image{align-self:stretch;min-height:520px}
.kickstart-hero-image img{width:100%;height:100%;display:block;object-fit:contain;object-position:center bottom}
.kickstart-hero-copy{padding:5rem 0;position:relative;z-index:1}
.kickstart-hero-copy .eyebrow{color:#ff827d}
.kickstart-hero-copy h1{font-family:Inter,sans-serif;font-size:clamp(4rem,8vw,7.5rem);line-height:.85;letter-spacing:-.07em;text-transform:uppercase;color:#f7c0c3;margin:.35rem 0 0}
.kickstart-script{font-family:Fraunces,serif;font-size:clamp(2.4rem,5vw,4.8rem);font-style:italic;color:#f7c0c3;line-height:1;margin:.6rem 0 1.5rem}
.kickstart-lead{max-width:550px;font-size:clamp(1.35rem,2.4vw,2rem);line-height:1.35;margin-bottom:2rem;color:#fff}
.kickstart-cta{background:#ff625f;color:#fff;box-shadow:0 12px 26px rgba(13,24,81,.28)}
.kickstart-intro{background:#fffaf2}
.narrow-copy>h2,.section-heading h2{max-width:800px}
.narrow-copy>p:not(.eyebrow){max-width:850px;font-size:1.15rem;line-height:1.75}
.kickstart-features{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:3rem}
.kickstart-features article{background:#fff;border-radius:22px;padding:1.6rem;box-shadow:0 14px 34px rgba(30,42,100,.08)}
.kickstart-features span{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#ff625f;color:#fff;font-weight:700;margin-bottom:1rem}
.kickstart-features h3{font-size:1.08rem;margin-bottom:.5rem}.kickstart-features p{font-size:.95rem;line-height:1.6}
.kickstart-options{background:#eef1ff}
.section-heading{max-width:820px;margin-bottom:2.5rem}.section-heading>p:last-child{font-size:1.08rem}
.kickstart-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.kickstart-card{display:flex;flex-direction:column;background:#fff;border-top:7px solid #ff625f;border-radius:22px;padding:2rem;box-shadow:0 18px 42px rgba(30,42,100,.1)}
.kickstart-card-image{display:block;width:calc(100% + 4rem);max-width:none;aspect-ratio:1/1;object-fit:cover;margin:-2rem -2rem 1.5rem;border-radius:15px 15px 0 0}
.kickstart-card:nth-child(2){border-color:#2e4194}.kickstart-card:nth-child(3){border-color:#f3a950}
.kickstart-number{color:#ff625f;font-weight:700;text-transform:uppercase;letter-spacing:.08em}.kickstart-card h3{font-size:1.8rem;margin:.35rem 0}.kickstart-level{font-weight:700;color:#2e4194}.kickstart-card>p:not(.kickstart-number):not(.kickstart-level){line-height:1.65;margin-bottom:1.8rem}.kickstart-card .btn{margin-top:auto;align-self:flex-start}
.kickstart-community{margin-top:2rem;padding:2rem 2.2rem;border-radius:22px;background:#2e4194;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:2rem}.kickstart-community h2{color:#fff;margin-bottom:0}.kickstart-community .eyebrow{color:#f7c0c3}
@media(max-width:900px){.kickstart-hero-grid{grid-template-columns:1fr;gap:0}.kickstart-hero-image{min-height:420px;order:2}.kickstart-hero-copy{padding:4rem 0 1rem;order:1}.kickstart-features,.kickstart-grid{grid-template-columns:1fr 1fr}.kickstart-community{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.kickstart-hero-grid{min-height:auto}.kickstart-hero-copy h1{font-size:3.6rem}.kickstart-hero-image{min-height:330px;margin:0 -1.25rem}.kickstart-features,.kickstart-grid{grid-template-columns:1fr}.kickstart-community{padding:1.6rem}}
/* Página de link direto: Valores 2026 */
.student-dashboard-open{display:block}.student-dashboard-open .student-section-title{margin-top:44px}.student-single-resource{grid-template-columns:minmax(0,1fr);max-width:420px}
.values-hero{background:linear-gradient(135deg,#2a2172,#433aa0);color:#fff;text-align:center;padding:90px 0}.values-hero .eyebrow{color:#f7c0c3}.values-hero h1{color:#fff;max-width:900px;margin:0 auto 1rem;font-size:clamp(2.7rem,6vw,5.2rem)}.values-hero>div>p:last-child{max-width:720px;margin:0 auto;font-size:1.15rem}
.values-hero>div>p:last-child{color:#fff}
.values-section{background:#f5f1fb}.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}.value-card{overflow:hidden;background:#fff;border:1px solid var(--borda);border-radius:24px;box-shadow:var(--sombra)}.value-card>img{display:block;width:100%;aspect-ratio:1.45/1;object-fit:cover}.value-card-body{padding:1.8rem}.value-card h2{font-size:1.9rem;margin:.25rem 0 1.4rem}.price-options{display:grid;gap:.75rem;margin-bottom:1.5rem}.price-options p{margin:0;padding:1rem;border-radius:14px;background:#eeeafd;display:grid;gap:.15rem}.price-options strong{font-size:1rem}.price-options span{color:var(--texto-suave);font-size:.88rem}.price-options b{font-size:1.2rem;color:var(--verde);margin-top:.3rem}.value-list,.value-extra ul{padding:0;margin:0;list-style:none;display:grid;gap:.7rem}.value-list li,.value-extra li{position:relative;padding-left:1.45rem;line-height:1.5}.value-list li:before,.value-extra li:before{content:'✓';position:absolute;left:0;color:var(--coral);font-weight:800}.value-extra{margin-top:1.5rem;padding-top:1.3rem;border-top:1px solid var(--borda)}.value-extra h3{font-size:1rem;margin-bottom:.8rem}.values-note{display:flex;align-items:center;justify-content:space-between;gap:2rem;margin-top:2rem;padding:1.5rem 1.8rem;border-radius:18px;background:#fff}.values-note p{font-weight:700;margin:0}
.value-summary{display:block;cursor:pointer;list-style:none}.value-summary::-webkit-details-marker{display:none}.value-summary>img{display:block;width:100%;aspect-ratio:1.45/1;object-fit:cover}.value-summary-body{display:flex;flex-direction:column;padding:1.8rem}.value-summary .eyebrow{margin-bottom:.35rem}.value-title{font-family:'Fraunces',Georgia,serif;color:var(--verde-escuro);font-size:1.9rem;line-height:1.1}.value-summary-price{margin-top:1rem;color:var(--verde);font-weight:750;line-height:1.5}.value-toggle{display:flex;align-items:center;justify-content:space-between;margin-top:1.2rem;padding-top:1rem;border-top:1px solid var(--borda);color:var(--coral-escuro);font-size:.86rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.value-toggle:after{content:'Ver detalhes  +'}details[open] .value-summary-price{display:none}details[open] .value-toggle:after{content:'Ocultar detalhes  −'}.value-card[open] .value-card-body{border-top:1px solid var(--borda)}
@media(max-width:980px){.values-grid{grid-template-columns:1fr 1fr}.value-card:last-child{grid-column:1/-1;max-width:560px;margin:0 auto}}
@media(max-width:650px){.values-hero{padding:65px 0}.values-grid{grid-template-columns:1fr}.value-card:last-child{grid-column:auto}.values-note{align-items:flex-start;flex-direction:column}}

/* Página de link direto: Find Us */
.findus-hero{padding:88px 0 76px;background:linear-gradient(145deg,#2a2172 0%,#3d328f 58%,#ff6f6a 160%);color:#fff;text-align:center}.findus-hero-inner{max-width:760px}.findus-hero .eyebrow{color:#f7c0c3}.findus-hero h1{max-width:720px;margin:.25rem auto 1rem;color:#fff;font-size:clamp(2.8rem,7vw,5.5rem);line-height:.98}.findus-hero-inner>p:last-of-type{font-size:1.15rem;color:#f7f4ff}.findus-links{display:grid;gap:.85rem;max-width:620px;margin:2.3rem auto 0}.findus-link{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.05rem 1.25rem;border:1px solid rgba(255,255,255,.36);border-radius:16px;background:rgba(255,255,255,.12);color:#fff;font-weight:750;text-align:left;box-shadow:0 12px 28px rgba(15,11,61,.16);transition:transform .18s ease,background .18s ease}.findus-link:hover{transform:translateY(-2px);background:rgba(255,255,255,.2)}.findus-link span{font-size:1.3rem}.findus-resources{background:#f5f1fb}.findus-resources .section-heading{margin-left:auto;margin-right:auto;text-align:center}.findus-resource-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}.findus-resource-card{display:flex;flex-direction:column;overflow:hidden;background:#fff;border:1px solid var(--borda);border-radius:24px;box-shadow:var(--sombra)}.findus-resource-card>img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}.findus-resource-body{display:flex;flex:1;flex-direction:column;padding:1.7rem}.findus-tag{margin:0 0 .65rem;color:var(--coral-escuro);font-size:.78rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.findus-resource-card h3{font-size:1.6rem;margin-bottom:.6rem}.findus-resource-card p:not(.findus-tag){color:var(--texto-suave);line-height:1.6}.findus-resource-card .btn{align-self:stretch;justify-content:center;margin-top:auto;text-align:center}
@media(max-width:900px){.findus-resource-grid{grid-template-columns:1fr 1fr}.findus-resource-card:last-child{grid-column:1/-1;max-width:520px;margin:0 auto}}
@media(max-width:620px){.findus-hero{padding:64px 0 56px}.findus-resource-grid{grid-template-columns:1fr}.findus-resource-card:last-child{grid-column:auto;max-width:none}.findus-resource-body{padding:1.45rem}}
