/* Education Section Styles */
/* Estilos do cabeçalho/banner da página */
.educacao-header-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('../../img/principal/marcas/background.jpeg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.educacao-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.educacao-header-text h1 {
    font-family: 'Fahkwang', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.educacao-header-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #d1ff00, transparent);
}

.educacao-header-text p {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight {
    color: #d1ff00;
}

/* Seção de programas de educação */
.educacao-programas-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.educacao-programs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.educacao-program-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.educacao-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.educacao-image-section {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.educacao-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.educacao-program-card:hover .educacao-image {
    transform: scale(1.05);
}

.educacao-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.educacao-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #d1ff00;
    color: #000000;
    padding: 8px 15px;
    border-radius: 50px;
    font-family: 'Fahkwang', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.educacao-content-section {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.educacao-program-title {
    font-family: 'Fahkwang', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    position: relative;
    padding-bottom: 15px;
}

.educacao-program-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.educacao-program-description {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.educacao-program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.educacao-feature-tag {
    background-color: #f1f1f1;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #333;
    font-family: 'Fahkwang', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.educacao-feature-tag:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
}


/* Elementos decorativos */
.educacao-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.05;
}

.educacao-circle-1 {
    width: 400px;
    height: 400px;
    border: 30px solid var(--primary-green);
    top: -100px;
    right: -100px;
}

.educacao-circle-2 {
    width: 300px;
    height: 300px;
    border: 20px solid var(--accent-yellow);
    bottom: -80px;
    left: -80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .educacao-program-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .educacao-programs-container {
        grid-template-columns: 1fr;
    }
    
    .educacao-image-section {
        height: 220px;
    }
    
    .educacao-program-title {
        font-size: 1.6rem;
    }
    
    .educacao-program-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .educacao-header-section {
        padding: 100px 0 60px;
    }
    
    .educacao-header-text h1 {
        font-size: 2.8rem;
    }
    
    .educacao-header-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .educacao-image-section {
        height: 200px;
    }
    
    .educacao-content-section {
        padding: 20px;
    }
    
    .educacao-program-title {
        font-size: 1.5rem;
        padding-bottom: 12px;
    }
    
    .educacao-program-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .educacao-header-section {
        padding: 80px 0 50px;
    }
    
    .educacao-header-text h1 {
        font-size: 2.3rem;
    }
    
    .educacao-header-text p {
        font-size: 1rem;
    }
}
