/* ============================================= */
/* ESTILOS DA SEÇÃO 'MOTIVOS' (COM IMAGEM DE FUNDO) */
/* ============================================= */

.motivos-section {
    padding: 80px 20px;
    position: relative;
    background-image: url('../Img/bg_colegio.jpg');
    /*background-color: #ff7300;*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
}

/* Garante que o conteúdo fique à frente */
.motivos-section .container {
    position: relative;
    z-index: 2;
}

.motivos-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-shadow: none; /* SOMBRA REMOVIDA AQUI */
}

.motivos-section .section-title strong {
    color: #ffffff;
}

.motivos-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff; 
    font-weight: 500;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;

}

.motivos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.motivo-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    aspect-ratio: 1 / 1; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.motivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.1);
}

.motivo-card .icon {
    font-size: 2.5rem;
    color: #ff7300;
    margin-bottom: 15px;
}

.motivo-card h3 {
    font-size: 1.1rem;
    color: #003366;
    line-height: 1.3;
    margin: 0;
}

.motivos-saiba-mais {
    text-align: center;
    margin-top: 50px;
}

.btn-saiba-mais-motivos {
    display: inline-block;
    background-color: #ffffff;
    color: #003366;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-saiba-mais-motivos:hover {
    background-color: #ff7300;
    color: #003366;
    transform: scale(1.05);
}

/* --- AJUSTES PARA TELAS MENORES --- */
@media (max-width: 1024px) {
    .motivos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .motivos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .motivos-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
}