* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #120a33;
    --bg-darker: #0c0724;
    --bg-light: #fff8fc;
    --primary: #db1982;
    --primary-dark: #b51269;
    --secondary: #ff4db2;
    --accent: #ffd166;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #6b6b6b;
    --border-soft: rgba(219, 25, 130, 0.15);
    --shadow-soft: 0 12px 35px rgba(18, 10, 51, 0.12);
    --shadow-strong: 0 18px 45px rgba(219, 25, 130, 0.22);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1140px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
}

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

section {
    width: 100%;
}

.index,
.aprender,
.sobre-mentoria,
.resultados,
.anuncio,
.perguntas,
footer {
    padding-left: 20px;
    padding-right: 20px;
}

/* HERO */
.index {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 77, 178, 0.16), transparent 30%),
        linear-gradient(135deg, #0c0724 0%, #120a33 55%, #241158 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.index h1 {
    max-width: 980px;
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.p-inicial {
    max-width: 840px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 34px;
}

.video-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 34px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    border: 0;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.a-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    min-height: 68px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3ea5, #db1982);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(219, 25, 130, 0.35);
    transition: 0.3s ease;
}

.a-index:hover {
    transform: translateY(-3px);
}

.span-inicial {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.72);
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .index h1 {
        font-size: 2.6rem;
    }

    .p-inicial {
        font-size: 1rem;
    }

    .video-wrapper {
        max-width: 320px;
    }

    .a-index {
        width: 100%;
        max-width: 360px;
        font-size: 1rem;
    }
}
/* APRENDER */
.aprender {
    background: linear-gradient(to bottom, #ffffff 0%, #fff9fc 100%);
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
}

.aprende {
    width: 100%;
    max-width: var(--max-width);
}

.aprende h1 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 18px;
}

.aprende h1::after {
    content: "";
    display: block;
    width: 84px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 999px;
    margin: 18px auto 0;
}

.caixas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 55px;
}

.caixa {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.caixa:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(18, 10, 51, 0.14);
    border-color: rgba(219, 25, 130, 0.28);
}

.caixa h2 {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(219, 25, 130, 0.2);
}

.caixa p {
    font-size: 1.03rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
}

/* SOBRE */
.sobre-mentoria {
    background:
        linear-gradient(180deg, rgba(245,35,203,0.07), rgba(219,25,130,0.03));
    border-top: 4px solid var(--primary);
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
}

.sobre {
    width: 100%;
    max-width: 980px;
    background: #ffffff;
    border-radius: 28px;
    padding: 50px 42px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(219, 25, 130, 0.12);
}

.sobre h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 28px;
}

.sobre p {
    color: #333333;
    font-size: 1.06rem;
    line-height: 1.9;
    margin-bottom: 12px;
}

.sobre span {
    color: var(--primary);
    font-weight: 800;
}

/* RESULTADOS */
.resultados {
    background: linear-gradient(135deg, var(--bg-dark), #1a0e46 70%, #2d146d 100%);
    color: var(--text-light);
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
}

.slides {
    width: 100%;
    max-width: 1120px;
}

.slides h1 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 50px;
}

.slides span {
    color: var(--secondary);
}

.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.slider {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 14px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.slider:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

.carousel img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* OFERTA */
.anuncio {
    background: linear-gradient(to bottom, #fff8fc 0%, #ffffff 100%);
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.anuncio-menor {
    width: 100%;
    max-width: 920px;
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 25px 60px rgba(20, 10, 40, 0.12);
    border: 1px solid rgba(219, 25, 130, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.oferta-topo {
    display: inline-block;
    background: #fff4c7;
    color: #6b4c00;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.anuncio-menor h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #120a33;
    margin-bottom: 28px;
}

.produto-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.produto-badge span {
    background: #fff0f8;
    color: #b51269;
    border: 1px solid rgba(219, 25, 130, 0.14);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 700;
}

.lista-oferta {
    list-style: none;
    margin: 0 auto 28px;
    padding: 0;
    width: 100%;
    max-width: 520px;
    text-align: left;
}

.lista-oferta li {
    background: #fff8fc;
    border: 1px solid rgba(219, 25, 130, 0.08);
    border-radius: 16px;
    padding: 14px 16px 14px 44px;
    margin-bottom: 12px;
    color: #2f2f2f;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

.lista-oferta li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3ea5, #db1982);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.bloco-preco {
    margin: 26px 0 24px;
}

.preco-antigo {
    font-size: 1.05rem;
    color: #8a8a8a;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.preco-atual {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #db1982;
    line-height: 1;
    margin-bottom: 10px;
}

.descricao-preco {
    font-size: 1rem;
    color: #666;
}

.conheca {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 390px);
    min-height: 66px;
    padding: 0 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3ea5, #db1982);
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(219, 25, 130, 0.25);
    transition: 0.3s ease;
}

.conheca:hover {
    transform: translateY(-3px);
}

.microcopy {
    margin-top: 16px;
    color: #6d6d6d;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .anuncio-menor {
        padding: 40px 22px;
        border-radius: 24px;
    }

    .lista-oferta {
        max-width: 100%;
    }

    .lista-oferta li {
        font-size: 0.96rem;
        padding: 13px 14px 13px 42px;
    }

    .conheca {
        width: 100%;
    }
}

/* FAQ */
.perguntas {
    background: linear-gradient(135deg, var(--bg-dark), #1a0f47);
    border-top: 4px solid var(--primary);
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
    color: var(--text-light);
}

.pergunta {
    width: 100%;
    max-width: 920px;
}

.pergunta h1 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 40px;
}

.pergunta p,
.pergunta span {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 20px;
}

.pergunta p {
    margin-top: 16px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    color: #ffffff;
}

.pergunta span {
    color: rgba(255,255,255,0.82);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .caixas {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre {
        padding: 40px 28px;
    }
}

@media (max-width: 768px) {
    .index {
        padding-top: 70px;
        padding-bottom: 70px;
        min-height: auto;
    }

    .index h1 {
        font-size: 2.2rem;
    }

    .p-inicial {
        font-size: 1rem;
    }

    .aprende h1,
    .slides h1,
    .pergunta h1,
    .sobre h1,
    .anuncio-menor h1 {
        line-height: 1.2;
    }

    .caixas,
    .carousel {
        grid-template-columns: 1fr;
    }

    .caixa {
        min-height: auto;
    }

    .sobre {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .anuncio-menor {
        padding: 40px 22px;
        border-radius: 24px;
    }

    .anuncio-menor::before {
        font-size: 0.68rem;
        top: 18px;
        right: -52px;
        padding: 8px 52px;
    }

    .index a,
    .anuncio-menor a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .index h1 {
        font-size: 1.9rem;
    }

    .p-inicial {
        font-size: 0.95rem;
    }

    .caixa {
        padding: 24px 18px;
    }

    .caixa h2 {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .caixa p {
        font-size: 0.98rem;
    }

    .sobre p,
    .pergunta span,
    .pergunta p {
        font-size: 0.96rem;
    }

    footer {
        padding: 14px 16px;
        font-size: 0.88rem;
    }
}