/* Estilos para a seção Hero */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('../image/slide-05.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    top: -50px;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos para a seção de Cursos */
.cursos-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

/* Filtros */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #fff;
    color: #2c3e50;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: #fff;
}

/* Grid de Cursos */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.curso-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curso-card:hover {
    transform: translateY(-5px);
}

.curso-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    color: #fff;
}

.curso-badge.online {
    background: #2ecc71;
}

.curso-badge.presencial {
    background: #3498db;
}

.curso-badge.workshop {
    background: #e74c3c;
}

.curso-header {
    margin-bottom: 15px;
}

.curso-header h3 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.curso-duracao {
    font-size: 0.9em;
    color: #7f8c8d;
}

.curso-descricao {
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.5;
}

.curso-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9em;
}

.curso-preco {
    margin-bottom: 15px;
}

.preco-atual {
    font-size: 1.2em;
    font-weight: 600;
    color: #2ecc71;
}

.preco-antigo {
    font-size: 0.9em;
    color: #95a5a6;
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-inscrever {
    width: 100%;
    padding: 10px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-inscrever:hover {
    background: #2980b9;
}

/* Seção de Benefícios */
.beneficios-section {
    padding: 5rem 2rem;
    background: #fff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.beneficio-card p {
    color: #666;
    line-height: 1.6;
}

/* Seção de Inscrição */
.inscricao-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)), url('../image/inscricao-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.inscricao-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.inscricao-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.inscricao-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.inscricao-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-inscricao {
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-inscricao:hover {
    background: #34495e;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Estilos para Áreas de Formação */
.areas-formacao {
    padding: 50px 0;
    background: #f8f9fa;
}

.areas-formacao h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.area-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.area-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card ul li {
    color: #7f8c8d;
    margin: 8px 0;
}

/* Estilos para Modalidades de Ensino */
.modalidades-ensino {
    padding: 50px 0;
}

.modalidades-ensino h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.modalidade-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.modalidade-card:hover {
    transform: translateY(-5px);
}

.modalidade-card i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.modalidade-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.modalidade-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modalidade-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.modalidade-card ul li {
    color: #34495e;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.modalidade-card ul li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .cursos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid,
    .modalidades-grid {
        grid-template-columns: 1fr;
    }

    .curso-card {
        margin-bottom: 20px;
    }

    .curso-info {
        flex-direction: column;
        gap: 5px;
    }
} 