
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --azul: #49aab3;
    --rosa: #f7acaf;
    --rosa-forte: #d74797;
    --branco: #fdfdfd;
    --preto: #1a1a1a;
    --azul-escuro: #2d7f87;
    --rosa-claro: #fde8e9;
    --cinza-bg: #f8f4f4;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--preto);
    background: var(--branco);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    background: var(--branco);
    border-bottom: 2px solid var(--rosa);
    padding: 8px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: sticky;
    top: 0;
    z-index: 100; */
  }

  .logo img {
    width: 120px;
  }

  nav a.nav-cta {
    background: var(--rosa-forte);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background .2s;
  }
  nav a.nav-cta:hover { background: #b33880; }

  /* ── HERO ── */
    .btn-card {
    display: block;
    background: var(--rosa-forte);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background .2s;
  }
  .btn-card:hover { background: #b33880; }
  .hero-card .guarantee {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  /* HERO NOVA */
.hero-bolos {
  min-height: 88vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;

  background:
  linear-gradient(
    90deg,
    rgba(73,170,179,.99) 0%,
    rgba(73,170,179,.98) 35%,
    /* rgba(73,170,179,.95) 55%, */
    /* rgba(73,170,179,.88) 70%, */
    rgba(45,127,135,.65) 82%,
    rgba(45,127,135,.25) 92%,
    rgba(45,127,135,0) 100%
  ),
  /* url('./bg-mobile.png') center right / auto no-repeat; */
  url('./bg-mobile.png') right center / 80% auto no-repeat;
}

.hero-bolos::before,
.hero-bolos::after {
  display: none;
}

.hero-content {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 26px;
}

.hero-bolos h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  /* line-height: 24px; */
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-bolos h1 span {
  color: var(--rosa-forte);
}

.hero-sub {
  max-width: 520px;
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 22px;
}

.price-old {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: var(--branco);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  font-size: 54px;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  margin-bottom: 20px;
}

.btn-hero {
    display: inline-block;
    background: var(--rosa-forte);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: transform .15s, background .2s;
    box-shadow: 0 6px 30px rgba(215,71,151,0.35);
  }
  .btn-hero:hover { background: #b33880; transform: translateY(-2px); }

  /* ── CONTADORES ── */
  .counters {
    background: var(--azul);
    padding: 50px 5%;
  }
  .counters-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }
  .counter-item .number {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  .counter-item .label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  /* ── SUBHEADLINE ── */
  .subheadline {
    background: var(--rosa-claro);
    padding: 60px 5%;
    text-align: center;
  }
  .subheadline p {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--preto);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .subheadline p em {
    font-style: normal;
    color: var(--rosa-forte);
  }

/* ─────────────────────────────
   DEPOIMENTOS
───────────────────────────── */

.depoimentos{
    padding:90px 5%;
    background:linear-gradient(180deg,#fff 0%,#f7fbff 100%);
}

.depoimentos .section-title{
    color:var(--preto);
    text-align:center;
    margin-bottom:12px;
}

.depoimentos .section-title span{
    color:var(--rosa-forte);
}

.depoimentos .section-sub{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.depoimentos-grid{
    max-width:900px;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    gap:12px;
}

.depoimentos-grid img{
    width:90%;
    display:block;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s ease;
}

.depoimentos-grid img:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

  /* ── QUEM SOU ── */
  .quem-sou {
    background: var(--azul);
    padding: 80px 5%;
  }
  .quem-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
  }
  .bia-foto {
    width: 100%;
    border-radius: 20px;
    /* height: 380px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
    color: #fff;
    flex-direction: column;
    gap: 10px;
  }
  .bia-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
  }
  .quem-texto .section-title { text-align: left; color: #fff; }

  .quem-texto p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin-top: 20px;
  }
  .quem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
  }
  .quem-stat {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
  }
  .quem-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 4px;
  }
  .quem-stat span { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; }

  /* ── O QUE É O CURSO ── */
  .proposta {
    background: var(--cinza-bg);
    padding: 80px 5%;
  }
  .proposta-inner { max-width: 900px; margin: 0 auto; }
  .proposta-list {
    list-style: none;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .proposta-list li {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--rosa);
  }
  .check-icon {
    width: 28px; height: 28px;
    background: var(--rosa-forte);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
  }
  .proposta-list li p {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    font-weight: 600;
  }
  .proposta-access {
    /* background: var(--azul); */
    color: #fff;
    text-align: center;
    border-radius: 16px;
    /* padding: 24px; */
    margin-top: 32px;
    font-size: 15px;
    font-weight: 700;
  }

/* ── GALERIA ───────────────────────── */

.galeria{
    background: var(--branco);
    padding:90px 5%;
}

.galeria .section-title{
    color:var(--preto);
    text-align:center;
    margin-bottom:12px;
}

.galeria .section-sub{
    color:#666;
    text-align:center;
    margin-bottom:50px;
}

.galeria-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.galeria-card{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.galeria-card img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
}

.galeria-card:hover img{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.bolo-tag{
    margin-top:18px;
    padding:10px 22px;
    background:var(--rosa-forte);
    color:#fff;
    border-radius:999px;
    font-weight:600;
    font-size:15px;
    display:inline-block;
}

@media (max-width: 768px){

    .galeria-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .bolo-tag{
        font-size:14px;
        padding:9px 18px;
    }

}

@media (max-width: 500px){

    .galeria-grid{
        grid-template-columns:1fr;
    }

}

  /* ── PREÇO / PROPOSTA ── */
  #proposta {
    background: var(--branco);
    padding: 80px 5%;
  }
  .preco-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .preco-mockup {
    /* background: linear-gradient(135deg, var(--rosa-claro), #fce4e4); */
    width: 100%;
    border-radius: 20px;
    /* height: 240px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    margin-bottom: 36px;
  }
  .preco-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .preco-de { font-size: 18px; color: #999; text-decoration: line-through; margin-bottom: 4px; }
  .preco-por { font-size: 18px; color: #666; margin-bottom: 8px; font-weight: 600; }
  .preco-valor {
    font-size: 60px;
    font-weight: 900;
    color: var(--rosa-forte);
    line-height: 1;
    margin-bottom: 30px;
  }
  .preco-valor sup { font-size: 28px; vertical-align: super; }
  .preco-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .preco-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
  }
  .preco-lista li::before {
    content: '✓';
    color: var(--azul);
    font-weight: 900;
    font-size: 16px;
  }
  .btn-comprar {
    display: block;
    background: var(--rosa-forte);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background .2s, transform .15s;
    box-shadow: 0 8px 30px rgba(215,71,151,0.3);
  }
  .btn-comprar:hover { background: #b33880; transform: translateY(-2px); }
  .garantia-badge {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 13px;
    color: #166534;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* ── INSTAGRAM ── */
  .instagram {
    background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
    padding: 80px 5%;
  }
  .insta-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .insta-mockup {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-direction: column;
    gap: 12px;
    border: 2px solid rgba(255,255,255,0.2);
  }
  .insta-mockup span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
  }
  .instagram .section-title { text-align: left; color: #fff; }
  .instagram p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 28px;
  }
  .btn-insta {
    display: inline-block;
    background: #fff;
    color: var(--rosa-forte);
    font-size: 14px;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity .2s;
  }
  .btn-insta:hover { opacity: 0.9; }

  /* ── PARA QUEM É ── */
  .para-quem {
    background: var(--rosa-claro);
    padding: 80px 5%;
  }
  .para-quem-inner { max-width: 900px; margin: 0 auto; }
  .para-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  .para-item {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-top: 3px solid var(--rosa-forte);
  }
  .para-num {
    width: 32px; height: 32px;
    background: var(--rosa-forte);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
  }
  .para-item p { font-size: 14px; line-height: 1.55; color: #333; font-weight: 600; }

  /* ── FAQ ── */
  .faq {
    background: var(--branco);
    padding: 80px 5%;
  }
  .faq-inner { max-width: 780px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }
  .faq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--preto);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--rosa-forte);
    font-weight: 900;
    flex-shrink: 0;
    transition: transform .2s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--preto);
    padding: 90px 5%;
    text-align: center;
  }
  .cta-final h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .cta-final h2 em { font-style: normal; color: var(--rosa); }
  .cta-final p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
  }
  .selos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .selo {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ── FOOTER ── */
  footer {
    background: #111;
    padding: 28px 5%;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    /* .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 380px; margin: 0 auto; } */
    .counters-inner { grid-template-columns: 1fr; gap: 30px; }
    .quem-inner { grid-template-columns: 1fr; }
    .bia-foto { height: 260px; }
    .proposta-list { grid-template-columns: 1fr; }
    /* .galeria-grid { grid-template-columns: repeat(2, 1fr); } */
    .insta-inner { grid-template-columns: 1fr; }
    .insta-mockup { height: 200px; }
    .quem-stats { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
  .hero-bolos {
    min-height: 100vh;
    padding: 70px 26px 40px;
    align-items: flex-start;
    text-align: center;

    background:
  linear-gradient(
    to bottom,
    var(--azul) 0%,
    rgba(73,170,179,.98) 45%,
    rgba(73,170,179,.85) 70%,
    rgba(73,170,179,.60) 78%,
    rgba(73,170,179,.30) 100%
  ),
  /* url('./bg-mobile.png') center bottom / cover no-repeat; */
  url('./bg-mobile3.png') center bottom / 100% auto no-repeat;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-eyebrow {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .hero-bolos h1 {
    font-size: 39px;
    /* line-height: .92; */
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 auto 26px;
  }

  .price-old {
    font-size: 22px;
  }

  .price-main {
    font-size: 50px;
    margin-bottom: 22px;
  }

  .btn-hero {
    width: 100%;
    max-width: 305px;
    justify-content: center;
    padding: 19px 20px;
    font-size: 14px;
    border-radius: 12px;
  }
}
