/* ========== BANNER ========== */
.page-banner-matricula {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4efdf 50%, #fef9e7 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-matricula::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-matricula::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-etiqueta-matricula {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-banner-matricula h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner-matricula p {
    font-size: 1.2rem;
    color: #555;
    position: relative;
    z-index: 1;
}

/* ========== SEÇÃO 1: PRINCIPAL ========== */
.matricula-principal {
    padding: 80px 0 60px;
    background: #ffffff;
}

.matricula-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.matricula-texto {
    flex: 1;
}

.matricula-texto h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.matricula-texto > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-destaque {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f0faf5;
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid #27ae60;
    margin-bottom: 30px;
}

.info-destaque svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-destaque p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.info-destaque p strong {
    color: #2c3e50;
}

/* Imagem vertical mobile (escondida no desktop) */
.matricula-imagem-vertical-mobile {
    display: none;
}

/* Imagens Desktop */
.matricula-imagens-desktop {
    flex: 0.9;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.matricula-imagem-vertical {
    flex: 1;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.matricula-imagem-vertical img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.matricula-imagem-vertical:hover img {
    transform: scale(1.05);
}

.matricula-imagem-horizontal {
    flex: 1.5;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    align-self: center;
}

.matricula-imagem-horizontal img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.matricula-imagem-horizontal:hover img {
    transform: scale(1.05);
}

/* ========== SEÇÃO 2: COMO FUNCIONA ========== */
.como-funciona {
    padding: 70px 0;
    background: #faf9f7;
}

.como-funciona h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
}

.como-funciona h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #27ae60;
    margin: 15px auto 0;
    border-radius: 2px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.passo-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.passo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.passo-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.passo-card h3 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.passo-card p {
    color: #777;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========== SEÇÃO 3: POR QUE BRAVE KIDS ========== */
.por-que-matricula {
    padding: 80px 0;
    background: #ffffff;
}

.por-que-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.por-que-texto {
    flex: 1;
}

.por-que-texto h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 800;
}

.por-que-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.por-que-lista li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    padding: 15px 20px;
    background: #faf9f7;
    border-radius: 12px;
    border-left: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.por-que-lista li:hover {
    background: #f0faf5;
    transform: translateX(5px);
}

.por-que-lista li strong {
    color: #2c3e50;
}

.por-que-imagem {
    flex: 0.9;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.por-que-imagem img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.por-que-imagem:hover img {
    transform: scale(1.05);
}

/* ========== SEÇÃO 4: CTA FINAL ========== */
.cta-matricula {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.cta-matricula-wrapper {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-matricula-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-matricula-wrapper p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-botoes-matricula {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-agende-visita {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #27ae60;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #27ae60;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.btn-agende-visita:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-agende-visita svg {
    transition: transform 0.3s ease;
}

.btn-agende-visita:hover svg {
    transform: translateX(5px);
}

.btn-whatsapp-matricula {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-matricula:hover {
    background: #1ea352;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .page-banner-matricula h1 {
        font-size: 2.5rem;
    }
    
    .matricula-texto h2 {
        font-size: 1.7rem;
    }
    
    .matricula-wrapper {
        gap: 40px;
    }
    
    .matricula-imagem-vertical {
        max-width: 220px;
    }
    
    .matricula-imagem-horizontal {
        max-width: 320px;
    }
    
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner-matricula {
        padding: 70px 0 50px;
    }
    
    .page-banner-matricula h1 {
        font-size: 2rem;
    }
    
    .matricula-wrapper {
        flex-direction: column;
    }
    
    .matricula-texto {
        text-align: center;
    }
    
    .info-destaque {
        text-align: left;
    }
    
    /* Mostra imagem vertical no mobile */
    .matricula-imagem-vertical-mobile {
        display: block;
        max-width: 350px;
        margin: 25px auto 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    .matricula-imagem-vertical-mobile img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        display: block;
    }
    
    /* Esconde imagens desktop */
    .matricula-imagens-desktop {
        display: none;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .por-que-wrapper {
        flex-direction: column-reverse;
    }
    
    .por-que-imagem {
        max-width: 400px;
    }
    
    .cta-botoes-matricula {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-agende-visita,
    .btn-whatsapp-matricula {
        width: 100%;
        justify-content: center;
        max-width: 350px;
    }
    
    .cta-matricula-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-banner-matricula h1 {
        font-size: 1.8rem;
    }
    
    .matricula-texto h2 {
        font-size: 1.5rem;
    }
    
    .como-funciona h2,
    .por-que-texto h2,
    .cta-matricula-wrapper h2 {
        font-size: 1.7rem;
    }
    
    .matricula-imagem-vertical-mobile {
        max-width: 300px;
    }
    
    .por-que-imagem {
        max-width: 350px;
    }
    
    .por-que-lista li {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .btn-agende-visita,
    .btn-whatsapp-matricula {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}