/* =============================================
   KIT EDUCAÇÃO ESPECIAL — CSS
   Paleta: Roxo/Lilás (inclusão e autismo)
   ============================================= */

/* --- FONTES LOCAIS --- */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/poppins-v24-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/poppins-v24-latin-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/roboto-v50-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/roboto-v50-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/roboto-v50-latin-700.woff2') format('woff2');
}

/* --- VARIÁVEIS GLOBAIS --- */
:root {
    --primary-color: #5b21b6;
    --secondary-color: #7c3aed;
    --accent-color: #fbbf24;
    --btn-color: #8b5cf6;
    --btn-hover: #7c3aed;
    --text-color: #54595f;
    --text-light: #ffffff;
    --bg-light: #faf5ff;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(91, 33, 182, 0.06);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* --- CONTAINERS & UTILITÁRIOS --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BOTÕES --- */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.2);
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-cta:hover {
    background-color: #f59e0b;
    color: #3b0764;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.3);
}

.btn-cta-yellow {
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-cta-yellow:hover {
    background-color: #f59e0b !important;
    color: #3b0764 !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
    padding: 80px 0;
    color: var(--white);
}

.hero-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* --- GRIDS --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.grid-2-bonus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* --- CARDS COM ÍCONE (DORES) --- */
.card-icon {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(91, 33, 182, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #ede9fe;
}

.card-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.15);
}

.icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.icon-svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
}

.card-icon h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

.cta-section .subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 20px auto 40px;
}

/* --- O QUE VEM NO KIT (CHECKLIST) --- */
.learn-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(91, 33, 182, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.learn-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(91, 33, 182, 0.1);
}

.learn-icon {
    width: 22px;
    height: 22px;
    fill: var(--secondary-color);
    flex-shrink: 0;
}

.learn-item p {
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

/* --- BÔNUS CARDS --- */
.bonus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ede9fe;
    box-shadow: 0 8px 30px rgba(91, 33, 182, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    transform: translateY(-8px);
}

.bonus-badge {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.bonus-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.bonus-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* --- PARA QUEM É --- */
.target-grid {
    max-width: 700px;
    margin: 30px auto 0;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(91, 33, 182, 0.05);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(91, 33, 182, 0.1);
}

.target-icon {
    width: 22px;
    height: 22px;
    fill: var(--secondary-color);
    flex-shrink: 0;
}

.target-item p {
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    font-size: 1.05rem;
}

/* --- OFERTA FINAL --- */
.offer-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.1);
    border: 2px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.price-display {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price-display .currency {
    font-size: 2rem;
    margin-top: 10px;
}

.price-display .value {
    font-size: 5rem;
}

.price-display .cents {
    font-size: 2rem;
    margin-top: 10px;
}

.price-info {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 30px;
}

.offer-list {
    text-align: left;
    margin-bottom: 30px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.offer-list svg {
    width: 20px;
    fill: var(--secondary-color);
    flex-shrink: 0;
}

/* --- FAQ --- */
details {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ede9fe;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(91, 33, 182, 0.03);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '▼';
    font-size: 1rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

details[open] summary::after {
    content: '▲';
}

details[open] summary {
    border-bottom: 1px solid #ede9fe;
    background-color: var(--bg-light);
}

details p {
    padding: 20px;
    color: var(--text-color);
    margin: 0;
    background-color: #fff;
}

/* --- FOOTER --- */
footer {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    border-top: none;
}

footer h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- IMAGEM DO HERO (MOCKUP DO PRODUTO) --- */
.hero-image {
    margin: 30px auto 10px;
    max-width: 700px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* --- PREVIEW DAS PÁGINAS DO KIT --- */
.kit-preview {
    max-width: 650px;
    margin: 0 auto 40px;
}

.kit-preview img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(91, 33, 182, 0.12);
}

/* --- IMAGEM NA OFERTA FINAL --- */
.offer-image {
    margin: 20px auto 25px;
    max-width: 400px;
}

.offer-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 8px 20px rgba(91, 33, 182, 0.15));
}

/* --- CARROSSEL DE AMOSTRAS --- */
.carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 230px;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.carousel-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(91, 33, 182, 0.18);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 566 / 801;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
    left: 8px;
}

.carousel-btn-right {
    right: 8px;
}

/* Dots de navegação */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(124, 58, 237, 0.4);
}

/* --- RESPONSIVIDADE --- */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .kit-preview {
        max-width: 550px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.15rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-section {
        padding: 50px 0;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-2,
    .grid-2-bonus {
        grid-template-columns: 1fr;
    }

    .card-icon {
        padding: 25px 20px;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 14px 30px;
        width: 100%;
        max-width: 400px;
    }

    .hero-image {
        margin: 20px auto 5px;
    }

    .kit-preview {
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .offer-box {
        padding: 30px 20px;
    }

    .offer-image {
        max-width: 260px;
    }

    .price-display .value {
        font-size: 4rem;
    }

    .price-display .currency,
    .price-display .cents {
        font-size: 1.6rem;
    }

    .learn-item {
        padding: 12px 15px;
    }

    .bonus-card {
        padding: 30px 20px;
    }

    .target-item {
        padding: 14px 18px;
    }

    .cta-section h2 {
        font-size: 1.4rem !important;
    }

    .cta-section p {
        font-size: 1rem !important;
    }

    summary {
        font-size: 0.95rem;
        padding: 16px;
    }

    details p {
        padding: 16px;
        font-size: 0.95rem;
    }

    footer {
        padding: 35px 0;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-slide {
        flex: 0 0 200px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn-left {
        left: 4px;
    }

    .carousel-btn-right {
        right: 4px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .price-display .value {
        font-size: 3.2rem;
    }

    .offer-image {
        max-width: 220px;
    }

    .btn-cta {
        font-size: 0.95rem;
        padding: 13px 20px;
    }

    .bonus-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-slide {
        flex: 0 0 170px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}
