:root{
  --bg:#FFF6BF;
  --bg2:#FFEFC2;
  --card:#FFFFFF;
  --ink:#2B2B2B;
  --muted:#6B6B6B;
  --accent:#FF8C42;
  --accent2:#FFD84D;
  --stroke:rgba(43,43,43,.12);

  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow2:0 14px 50px rgba(0,0,0,.10);

  --font-title:"Fredoka", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body:"Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container:1120px;
}

/* =========================
   Base
========================= */
*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  color:var(--ink);
  font-family:var(--font-body);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,216,77,.35), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(255,140,66,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #FFFDF0 65%, #FFFFFF);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* =========================
   Header / Navegação
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,246,191,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stroke);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 0;
}

.brand{
  flex-shrink:0;
}

.brand-logo{
  height:58px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  color:#3A3A3A;
}

.nav-links a{
  padding:8px 10px;
  border-radius:12px;
}

.nav-links a:hover{
  background:rgba(255,216,77,.35);
}

.nav-highlight{
  background:rgba(255,140,66,.14);
  border:1px solid rgba(255,140,66,.35);
}

.nav-toggle{
  display:none;
  border:1px solid var(--stroke);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  cursor:pointer;
}

/* =========================
   Estruturas gerais
========================= */
.section{
  padding:34px 0;
}

.section-soft{
  background:linear-gradient(180deg, rgba(255,239,194,.55), rgba(255,255,255,.7));
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}

.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.section-title{
  font-family:var(--font-title);
  font-size:clamp(26px, 2.3vw, 34px);
  margin:0;
}

.section-subtitle{
  margin:0;
  color:var(--muted);
  font-weight:700;
}

.card{
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .12s ease, background .12s ease;
}

.btn:active{
  transform:translateY(1px);
}

.btn-primary{
  background:linear-gradient(180deg, var(--accent2), var(--accent));
  color:#1E1E1E;
  border-color:rgba(43,43,43,.14);
  box-shadow:0 10px 25px rgba(255,140,66,.18);
}

.btn-primary:hover{
  box-shadow:0 14px 32px rgba(255,140,66,.22);
}

.btn-ghost{
  background:rgba(255,255,255,.75);
  border-color:rgba(43,43,43,.16);
}

.btn-ghost:hover{
  background:rgba(255,255,255,.92);
}

.btn-wide{
  width:100%;
}

/* =========================
   Hero (home e base)
========================= */
.hero{
  padding:34px 0 10px;
}

.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  background:rgba(255,216,77,.38);
  border:1px dashed rgba(43,43,43,.20);
  border-radius:999px;
  font-weight:800;
}

.hero-title{
  font-family:var(--font-title);
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.02;
  margin:14px 0 10px;
  letter-spacing:.2px;
}

.hero-subtitle{
  font-size:18px;
  line-height:1.5;
  margin:0 0 16px;
  color:#3A3A3A;
  max-width:52ch;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:12px 0 14px;
}

.hero-bullets{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  color:var(--muted);
  font-weight:700;
}

.hero-media{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-foto{
  position:relative;
  width:100%;
  max-width:900px;
  margin:40px auto;
}

.hero-foto img{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 15%, black 85%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 85%, transparent);
  -webkit-mask-composite:source-in;
  mask-image:
    linear-gradient(to right, transparent, black 15%, black 85%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 85%, transparent);
  mask-composite:intersect;
}

/* =========================
   Produtos / Manuais
========================= */
.products{
  display:grid;
  grid-template-columns:1fr 1.18fr 1fr;
  gap:18px;
  align-items:stretch;
}

.product{
  position:relative;
  overflow:hidden;
}

.product-head{
  padding:16px 18px 10px;
  border-bottom:1px solid var(--stroke);
  background:radial-gradient(300px 160px at 20% 0%, rgba(255,216,77,.35), transparent 60%);
}

.product-title{
  font-family:var(--font-title);
  margin:0;
  font-size:20px;
}

.product-title span{
  font-weight:800;
}

.product-body{
  padding:16px 18px 18px;
  display:grid;
  gap:14px;
}

.product-cover{
  width:100%;
  max-height:250px;
  object-fit:contain;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,239,194,.65), rgba(255,255,255,.9));
  border:1px dashed rgba(43,43,43,.16);
  padding:10px;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  font-weight:700;
  color:#3A3A3A;
}

.checklist li{
  padding-left:26px;
  position:relative;
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  width:18px;
  height:18px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:rgba(255,216,77,.6);
  border:1px solid rgba(43,43,43,.12);
}

.product-meta{
  display:grid;
  gap:10px;
}

.price{
  display:flex;
  align-items:baseline;
  gap:6px;
  font-family:var(--font-title);
}

.price-currency{
  font-size:16px;
  opacity:.9;
}

.price-value{
  font-size:34px;
  letter-spacing:.3px;
}

.product-foot{
  padding:12px 18px 16px;
  border-top:1px solid var(--stroke);
}

.microcopy{
  margin:0;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.product-featured{
  transform:translateY(-8px);
  box-shadow:var(--shadow2);
  border-color:rgba(255,140,66,.28);
}

.featured-head{
  background:
    radial-gradient(340px 180px at 50% 0%, rgba(255,140,66,.18), transparent 65%),
    radial-gradient(340px 180px at 15% 0%, rgba(255,216,77,.35), transparent 60%);
}

.featured-note{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:800;
}

.badge{
  position:absolute;
  top:12px;
  left:80%;
  transform:translateX(-50%);
  z-index:2;
  background:rgba(255,216,77,.92);
  border:1px solid rgba(43,43,43,.15);
  padding:6px 12px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.4px;
  font-size:12px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* =========================
   Ícones de plataformas
========================= */
.plataformas{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
}

.icon-device{
  width:18px;
  height:18px;
  stroke:var(--accent);
  stroke-width:1.8;
  fill:none;
  flex-shrink:0;
}

/* =========================
   Split / Painel
========================= */
.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}

.big-checklist{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
  font-weight:800;
}

.big-checklist li{
  display:flex;
  gap:10px;
  align-items:center;
}

.big-checklist span{
  width:26px;
  height:26px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,216,77,.6);
  border:1px solid rgba(43,43,43,.12);
}

.split-cta{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.panel{
  padding:18px;
  border-radius:var(--radius);
  border:1px dashed rgba(43,43,43,.18);
  background:rgba(255,255,255,.6);
}

.panel-title{
  font-family:var(--font-title);
  margin:0 0 8px;
}

.panel-text{
  margin:0 0 10px;
  font-weight:700;
  line-height:1.55;
}

.panel-text.muted{
  color:var(--muted);
}

/* =========================
   Currículo
========================= */
.curriculo-hero{
  padding-bottom:18px;
}

.curriculo-hero-inner{
  display:grid;
  grid-template-columns:1.05fr .72fr .95fr;
  gap:24px;
  align-items:center;
}

.curriculo-copy .hero-subtitle{
  max-width:44ch;
}

.curriculo-hero-card{
  display:grid;
  gap:14px;
}

.mini-card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.mini-card h3{
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:22px;
}

.mini-card p{
  margin:0;
  line-height:1.6;
}

.mini-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  font-weight:700;
}

.curriculo-main-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}

.curriculo-text,
.timeline-side{
  min-width:0;
}

.curriculo-text{
  padding:24px;
}

.curriculo-text .section-title{
  margin-bottom:18px;
}

.curriculo-text p{
  margin:0 0 16px;
  line-height:1.8;
  font-size:17px;
}

.timeline-header{
  margin-bottom:14px;
}

.timeline{
  position:relative;
  display:grid;
  gap:18px;
  margin-top:8px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:84px;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg, var(--accent2), var(--accent));
  border-radius:999px;
}

.timeline-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:28px;
  position:relative;
}

.timeline-year{
  font-weight:900;
  font-size:14px;
  text-align:right;
  padding-top:6px;
  color:var(--muted);
}

.timeline-content{
  position:relative;
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:16px 18px;
}

.timeline-content::before{
  content:"";
  position:absolute;
  left:-22px;
  top:18px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--accent);
  border:4px solid #fff;
  box-shadow:0 0 0 2px rgba(255,140,66,.25);
}

.timeline-content h3{
  margin:0 0 6px;
  font-family:var(--font-title);
  font-size:20px;
}

.timeline-content p{
  margin:0;
  line-height:1.6;
  color:#444;
}

/* =========================
   Grupos
========================= */

.grupos-hero{
  padding: 34px 0 18px;
}

.grupos-hero-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .9fr) minmax(260px, .8fr);
  grid-template-areas:
    "head photo side"
    "details details side";
  gap: 24px;
  align-items: start;
}

.grupos-head{ grid-area: head; min-width: 0; }
.grupos-photo{ grid-area: photo; min-width: 0; }
.grupos-sidecards{ grid-area: side; min-width: 0; }
.grupos-details{ grid-area: details; min-width: 0; }

.grupos-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,216,77,.38);
  border: 1px dashed rgba(43,43,43,.20);
  border-radius: 999px;
  font-weight: 800;
  margin: 0 0 14px;
}

.grupos-title{
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: .2px;
}

.grupos-subtitle{
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: #3A3A3A;
  max-width: 44ch;
}

.grupos-photo{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.grupos-photo .hero-media{
  min-height: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.grupos-photo .hero-foto{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.grupos-details{
  padding-top: 4px;
}

.grupos-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.grupos-feature-list{
  display: grid;
  gap: 14px;
}

.grupos-feature{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.grupos-feature-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(255,140,66,.18);
}

.grupos-feature-text strong{
  display: block;
  color: #d85d00;
  font-size: 16px;
  margin-bottom: 4px;
}

.grupos-feature-text p{
  margin: 0;
  line-height: 1.55;
  color: #444;
}

.grupos-sidecards{
  display: grid;
  gap: 14px;
  align-self: start;
}

.destaque-card-laranja{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,240,.95));
  border: 1px solid rgba(255,140,66,.22);
}

.destaque-card-laranja h3{
  margin: 0 0 10px;
  font-family: var(--font-title);
  color: #d85d00;
  font-size: 22px;
}

.destaque-card-laranja p{
  margin: 0;
  line-height: 1.55;
}

.grupos-lista-check{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.grupos-lista-check li{
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.grupos-lista-check li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,140,66,.15);
}

/* Responsivo */
@media (max-width: 980px){
  .grupos-hero-layout{
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "photo"
      "details"
      "side";
    gap: 20px;
  }

  .grupos-photo .hero-foto{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .grupos-subtitle{
    font-size: 16px;
  }
}

/* =========================
   Planos - grupos
========================= */

.grupos-planos-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  align-items:stretch;
}

.plano-card{
  position:relative;
  padding:22px 20px 20px;
  display:grid;
  gap:16px;
}

.plano-head h3{
  margin:0 0 4px;
  font-family:var(--font-title);
  font-size:26px;
  color:#d85d00;
}

.plano-tag{
  margin:0;
  color:var(--muted);
  font-weight:800;
}

.plano-price{
  display:flex;
  align-items:flex-end;
  gap:6px;
  flex-wrap:wrap;
  line-height:1;
}

.plano-currency{
  font-family:var(--font-title);
  font-size:18px;
  color:#333;
}

.plano-value{
  font-family:var(--font-title);
  font-size:42px;
  color:#222;
}

.plano-period{
  font-weight:800;
  color:var(--muted);
  font-size:14px;
  margin-bottom:5px;
}

.plano-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.plano-list li{
  position:relative;
  padding-left:24px;
  line-height:1.5;
  font-weight:700;
  color:#444;
}

.plano-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(255,140,66,.15);
}

.plano-highlight{
  margin-top:auto;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,140,66,.08);
  border:1px solid rgba(255,140,66,.16);
  font-weight:800;
  line-height:1.5;
  text-align: center;
}

.plano-card-featured{
  position:relative;
  padding-top:32px;
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  border:2px solid rgba(255,140,66,.35);
}

.plano-badge{
  position:absolute;
  top:-14px;
  left:50%;
  background:rgba(255,216,77,.95);
  border:1px solid rgba(43,43,43,.15);
  border-radius:999px;
  padding:6px 12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transform:translateX(-50%);
}

.plano-card-publica{
  background:linear-gradient(180deg, rgba(255,248,230,.96), rgba(255,255,255,.94));
  border-color:rgba(255,140,66,.22);
}

@media (max-width: 1180px){
  .grupos-planos-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .grupos-planos-grid{
    grid-template-columns:1fr;
  }

  .plano-card-featured{
    transform:none;
  }
}

/* =========================
   Links de conteúdo
========================= */
.text-link{
  color:#ff6a00;
  font-weight:700;
  text-decoration:none;
  transition:color .2s ease, text-decoration-color .2s ease;
}

.text-link:hover{
  color:#000;
  text-decoration:underline;
}

/* =========================
   Vídeos
========================= */
#videos .container{
  width:min(var(--container), calc(100% - 32px));
}

.videos{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
  width:min(var(--container), calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
}

.video-card{
  display:grid;
  gap:10px;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.video-card iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:12px;
  border:none;
}

.video-title{
  font-weight:900;
}

/* =========================
   Footer
========================= */
.site-footer{
  margin-top:10px;
  border-top:1px solid var(--stroke);
  background:rgba(255,239,194,.6);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  flex-wrap:wrap;
}

.footer-name{
  font-family:var(--font-title);
  font-weight:800;
  font-size:18px;
}

.footer-note{
  color:var(--muted);
  font-weight:800;
}

.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  font-weight:900;
}

.footer-links a{
  padding:8px 10px;
  border-radius:12px;
}

.footer-links a:hover{
  background:rgba(255,216,77,.35);
}

.footer-bottom{
  padding-bottom:16px;
  color:var(--muted);
  font-weight:800;
}

/* =========================
   Responsivo
========================= */
@media (max-width: 980px){
  .hero-inner,
  .split,
  .curriculo-hero-inner,
  .curriculo-main-grid,
  .grupos-hero-grid,
  .grupos-info-grid{
    grid-template-columns:1fr;
  }

  .products,
  .videos{
    grid-template-columns:1fr;
  }

  .product-featured{
    transform:none;
  }

  .grupos-photo-wrap{
    order:2;
  }

  .grupos-sidecards{
    order:3;
  }

  .grupos-card-wide{
    grid-column:auto;
  }
}

@media (max-width: 760px){
  .nav-toggle{
    display:inline-flex;
  }

  .nav-links{
    display:none;
    position:absolute;
    right:16px;
    top:72px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(43,43,43,.14);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:10px;
    flex-direction:column;
    align-items:stretch;
    min-width:210px;
  }

  .nav-links.open{
    display:flex;
  }
}

@media (max-width: 640px){
  .hero-subtitle,
  .grupos-subtitle{
    font-size:16px;
  }

  .hero-foto,
  .grupos-photo-wrap .hero-foto{
    margin:20px auto;
  }

  .timeline::before{
    left:18px;
  }

  .timeline-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .timeline-year{
    text-align:left;
    padding-left:42px;
  }

  .timeline-content::before{
    left:-8px;
  }

  .curriculo-text{
    padding:20px;
  }
}
