/* Estilos para páginas internas de cursos */

/* Hero Section do Curso */
.curso-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}\n
/* Backgrounds específicos por curso */
.curso-hero-fisioterapia {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%) !important;
}\n
.curso-hero-odontologia {
    background: linear-gradient(135deg, #4DD0E1 0%, #00B5E2 100%) !important;
}\n
.curso-hero-enfermagem {
    background: linear-gradient(135deg, #66D4F1 0%, #4DD0E1 100%) !important;
}

/* Overlay elegante com sombra suave para legibilidade */
.curso-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
}

.curso-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.curso-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.curso-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.curso-breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.curso-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.curso-breadcrumb span:last-child {
    color: #FFB74D;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.curso-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2);
}

.curso-hero-title .highlight {
    color: #FFB74D;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.curso-hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.curso-hero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.25rem;
    color: #FFB74D;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.info-item strong {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.info-item span {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.curso-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.curso-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.curso-hero-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 350px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.curso-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B5E2, #4DD0E1, #26A69A);
}

.curso-hero-card i {
    font-size: 3.5rem;
    color: #26A69A;
    margin-bottom: 1rem;
}

.curso-hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.turma-data {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00B5E2;
}

.turma-vagas {
    background: linear-gradient(135deg, #26A69A 0%, #4DD0E1 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(244, 167, 185, 0.3);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.turma-preco {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.preco-mes {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4DD0E1;
    margin-bottom: 0.25rem;
}

.preco-total {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Sobre o Curso */
.sobre-curso {
    padding: 5rem 0;
    background: #f9fafb;
    position: relative;
}

.sobre-curso-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-curso-text .section-title {
    margin-bottom: 1.5rem;
}

.sobre-curso-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.sobre-curso-grid {
    display: grid;
    gap: 2rem;
}

.sobre-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.sobre-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sobre-icon i {
    font-size: 1.25rem;
    color: white;
}

.sobre-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.sobre-item p {
    color: #6b7280;
    line-height: 1.6;
}

.sobre-curso-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 1rem;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder:hover {
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #FFB74D;
}

.video-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Corpo Docente */
.corpo-docente {
    padding: 5rem 0;
}

.docentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.docente-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.docente-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.docente-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #e5e7eb;
}

.docente-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.docente-titulo {
    font-size: 0.875rem;
    color: #00B5E2;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.docente-especialidade {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.docente-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.docente-contato i {
    color: #00B5E2;
}

/* Grade Curricular */
.grade-curricular {
    padding: 5rem 0;
    background: #f9fafb;
}

.grade-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #b4c9e0;
    color: white;
    border-color: #00B5E2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.modulo-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.disciplinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.disciplina-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.disciplina-item i {
    font-size: 1.5rem;
    color: #00B5E2;
    flex-shrink: 0;
}

.disciplina-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.disciplina-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Depoimentos do Curso */
.depoimentos-curso {
    padding: 5rem 0;
}

.depoimentos-curso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-curso-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.depoimento-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.depoimento-rating {
    color: #FFB74D;
}

.depoimento-rating i {
    font-size: 0.875rem;
}

.depoimento-text {
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

/* Inscrição no Curso */
.inscricao-curso {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.inscricao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.inscricao-info .section-title {
    margin-bottom: 1.5rem;
    color: #92a8c8;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.inscricao-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.inscricao-beneficios {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(180, 201, 224, 0.1);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(180, 201, 224, 0.3);
}

.beneficio-item i {
    color: #00B5E2;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(180, 201, 224, 0.2));
}

.beneficio-item span {
    color: #1f2937;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Form de Inscrição */
.inscricao-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(180, 201, 224, 0.1);
    transition: all 0.3s ease;
}\n
.inscricao-form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(180, 201, 224, 0.2);
}\n
.inscricao-form .form-group label {
    font-weight: 600;
    color: #92a8c8;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}\n
.inscricao-form .form-group input,
.inscricao-form .form-group textarea {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}\n
.inscricao-form .form-group input:focus,
.inscricao-form .form-group textarea:focus {
    background: white;
    border-color: #00B5E2;
    box-shadow: 0 0 0 4px rgba(180, 201, 224, 0.1),
                0 4px 12px rgba(180, 201, 224, 0.15);
    transform: translateY(-1px);
}\n
/* Bot\u00f5es agora usam o sistema unificado do style.css */\n
/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ==================== OPORTUNIDADES DE MERCADO ==================== */
/* Efeitos especiais para cards de oportunidades */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 181, 226, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00B5E2;
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.25);
}

.stat-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #66D4F1 0%, #00B5E2 100%);
}

.stat-card:hover .stat-icon i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.stat-numero {
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover .stat-numero {
    color: #0096BF;
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(0, 181, 226, 0.3);
}

.stat-texto {
    transition: color 0.3s ease;
}

.stat-card:hover .stat-texto {
    color: #00B5E2;
}

/* Animação de entrada dos cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .curso-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .curso-hero-title {
        font-size: 2rem;
    }
    
    .curso-hero-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curso-hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .sobre-curso-content,
    .inscricao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .docentes-grid,
    .depoimentos-curso-grid {
        grid-template-columns: 1fr;
    }
    
    .grade-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .disciplinas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .curso-hero-title {
        font-size: 1.75rem;
    }
    
    .curso-hero-info {
        grid-template-columns: 1fr;
    }
    
    .curso-hero-card {
        padding: 2rem;
    }
    
    .sobre-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ==================== EAD FEATURES ==================== */
.ead-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #00B5E2;
}

.feature-card i {
    font-size: 3rem;
    color: #00B5E2;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .ead-features {
        grid-template-columns: 1fr;
    }
}

/* ==================== JUSTIFICATIVA E OBJETIVOS ==================== */
.justificativa,
.objetivos {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(180, 201, 224, 0.1);
}

.justificativa h3,
.objetivos h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #92a8c8;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #b4c9e0;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(146, 168, 200, 0.1);
}

.objetivos h3:first-child {
    margin-top: 0;
}

.objetivos h3:not(:first-child) {
    margin-top: 2.5rem;
}

.justificativa p,
.objetivos p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.objetivos-lista {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.objetivos-lista li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    color: #374151;
    line-height: 1.8;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 5px solid #b4c9e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objetivos-lista li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #b4c9e0 0%, #92a8c8 100%);
    transition: width 0.3s ease;
}

.objetivos-lista li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(180, 201, 224, 0.15),
                0 4px 12px rgba(180, 201, 224, 0.1);
    border-left-color: #92a8c8;
}

.objetivos-lista li:hover::before {
    width: 8px;
}

.objetivos-lista li i {
    color: #00B5E2;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    filter: drop-shadow(0 2px 4px rgba(180, 201, 224, 0.3));
    transition: all 0.3s ease;
}

.objetivos-lista li:hover i {
    transform: scale(1.15) rotate(360deg);
    color: #92a8c8;
}

/* ==================== CRONOGRAMA TABLE ==================== */
.cronograma-table {
    margin-top: 3rem;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cronograma-table table {
    width: 100%;
    border-collapse: collapse;
}

.cronograma-table thead {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
}

.cronograma-table thead th {
    color: white;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
}

.cronograma-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.cronograma-table tbody tr:hover {
    background: #f9fafb;
}

.cronograma-table tbody tr:last-child {
    border-bottom: none;
}

.cronograma-table tbody td {
    padding: 1.25rem 1.5rem;
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cronograma-table tbody td:first-child {
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cronograma-table thead th,
    .cronograma-table tbody td {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .cronograma-table tbody td:first-child {
        min-width: 120px;
    }
}

/* ==================== MÓDULOS DESTAQUE / ÁREAS ==================== */
.modulos-destaque {
    margin-top: 3rem;
}

.modulos-destaque h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.area-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #00B5E2;
}

.area-card i {
    font-size: 3rem;
    color: #00B5E2;
    margin-bottom: 1rem;
}

.area-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.area-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== BADGES DE MODALIDADE ==================== */
.badge-presencial,
.badge-ead {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-presencial {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    color: white;
}

.badge-ead {
    background: linear-gradient(135deg, #E0F7FA 0%, #4DD0E1 100%);
    color: white;
}

/* ==================== INFO BOXES DESTAQUE ==================== */
.curso-info-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(180, 201, 224, 0.2);
}

.info-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-box p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ==================== PERFIL DO EGRESSO ==================== */
.perfil-egresso {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #b4c9e0;
}

.perfil-egresso h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.perfil-egresso p {
    color: #6b7280;
    line-height: 1.8;
    text-align: justify;
}

/* ==================== DIFERENCIAIS DO CURSO ==================== */
.diferenciais-curso {
    padding: 5rem 0;
    background: #f9fafb;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #00B5E2;
}

.diferencial-card i {
    font-size: 3rem;
    color: #00B5E2;
    margin-bottom: 1rem;
}

.diferencial-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ==================== TABELA COM 4 COLUNAS ==================== */
.cronograma-table thead th:nth-child(3),
.cronograma-table thead th:nth-child(4) {
    text-align: center;
}

.cronograma-table tbody td:nth-child(3) {
    text-align: center;
    font-weight: 600;
    color: #00B5E2;
}

.cronograma-table tbody td:nth-child(4) {
    text-align: center;
}

@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .curso-info-destaque {
        grid-template-columns: 1fr;
    }
}