/* CSS Completo - ETS Educação - Inspirado no Framer */

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base para rem units */
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Sistema de Espaçamento - Bootstrap/Material Design */
:root {
    /* Espaçamentos base (8px grid system) */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    --spacing-4xl: 5rem;      /* 80px */
    --spacing-5xl: 6rem;      /* 96px */
    
    /* Margens e paddings específicos */
    --section-padding-y: var(--spacing-5xl);
    --section-padding-x: var(--spacing-xl);
    --container-padding: var(--spacing-xl);
    --card-padding: var(--spacing-xl);
    --button-padding-y: var(--spacing-md);
    --button-padding-x: var(--spacing-xl);
    
    /* Breakpoints para responsividade */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

/* Evitar overflow de títulos no mobile */
h1 {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Ajustes específicos do H1 da hero em telas pequenas */
@media (max-width: 640px) {
    #inicio h1.hero-title {
        font-size: clamp(2rem, 8.5vw, 2.5rem);
        line-height: 1.25;
        overflow-wrap: anywhere; /* quebra mesmo em palavras longas */
        hyphens: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    #inicio h1.hero-title span {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
        line-height: 1.3;
    }
}

/* Variáveis CSS */
:root {
    --primary-color: #1B2638;
    --primary-dark: #4f46e5;
    --secondary-color: #0F172A;
    --accent-color: #06b6d4;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1B2638 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0F172A 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Header Styles */
.header {
    background: #ffffff;
    height: 5rem; /* 80px */
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-image {
    width: 12rem;
    height: auto;
    object-fit: contain;
    max-height: 4rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin: 0;
}

/* Navigation */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-sm) 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    border-color: var(--primary-color);
}







/* ===== SISTEMA DE BOTÕES PADRONIZADO ===== */

/* Base Button Styles */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 2rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    min-width: fit-content !important;
    white-space: nowrap !important;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Primary Button - Ação principal */
.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
    color: white !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}

/* Secondary Button - Ação secundária */
.btn-secondary {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    color: #f97316 !important;
    border: 2px solid rgba(249, 115, 22, 0.3) !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}

/* Button Sizes */
.btn-sm {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}

.btn-lg {
    padding: 1.25rem 2.5rem !important;
    font-size: 1.25rem !important;
}

/* Button Variants for Special Cases */
.btn-accent {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
    color: white !important;
}

.btn-accent:focus {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}

/* WhatsApp Button - Caso especial */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border: 2px solid transparent !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    color: white !important;
}

.btn-whatsapp:focus {
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2) !important;
}

.btn-whatsapp .bi-whatsapp {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
}

/* Outline Buttons for Dark Backgrounds */
.btn-outline-light {
    background: rgba(249, 115, 22, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    color: #f97316 !important;
    border: 2px solid rgba(249, 115, 22, 0.3) !important;
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

.btn-outline-light:focus {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}

/* White Outline Button for Dark Backgrounds */
.btn-outline-white {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1f2937 !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.btn-outline-white:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2) !important;
    outline: none !important;
}

.btn-outline-white:active {
    transform: translateY(0) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .btn-sm {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}



.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Design Minimalista para Estatísticas */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    min-width: 160px;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

.stat-text {
    text-align: center;
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    letter-spacing: 0.5px;
}


/* Counter Animation Styles */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter.animate {
    transform: scale(1.1);
    color: #fbbf24;
}

@keyframes countUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.counter-animation {
    animation: countUp 0.6s ease-out;
}

/* Section Styles */
.section-header {
    margin-bottom: var(--spacing-4xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(15, 23, 42, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 37.5rem; /* 600px */
    margin: 0 auto;
}

/* Courses Section */
.courses-section {
    padding: var(--section-padding-y) 0;
    background: var(--bg-primary);
}

.course-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    position: relative;
    height: 12.5rem; /* 200px */
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 280px;
}

.course-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    min-height: 3rem;
    display: flex;
    align-items: flex-start;
}

.course-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    min-height: 4rem;
    display: flex;
    align-items: flex-start;
}

.course-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.course-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Course Features List */
.course-features {
    margin: var(--spacing-lg) 0;
    flex-grow: 1;
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    min-height: 1.5rem;
}

.feature-list li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Course Card Button Styles */
.course-card .btn {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.course-card .btn:hover {
    background: white;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}


/* About Section - Novo Design */
.about-section {
    padding: var(--section-padding-y) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Header da Seção */
.about-header {
    margin-bottom: var(--spacing-4xl);
}

/* Conteúdo Principal */
.about-content {
    margin-top: var(--spacing-3xl);
}

.about-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding-left: var(--spacing-2xl);
}

.about-text h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.about-features {
    margin-top: var(--spacing-xl);
}

.about-features .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features .feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-features .feature-list li i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.about-header .section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 43.75rem; /* 700px */
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Principal */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}



.image-overlay {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Cards de Valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.value-card {
    background: white;
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    opacity: 0.3;
    z-index: -1;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.value-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Modalidades de Ensino - Estilos específicos */
.feature-list {
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Ajustes específicos para os cards de modalidades */
#modalidades .grid {
    align-items: stretch;
}

#modalidades .value-card,
#modalidades > div > div > div {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#modalidades .p-8 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

#modalidades .space-y-3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 0;
}

#modalidades .btn {
    margin-top: auto;
    align-self: stretch;
    justify-content: center;
    width: 100%;
}

#modalidades .value-icon {
    background: var(--gradient-primary);
}

/* Estilos para os tópicos descritivos */
#modalidades .course-topics {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

#modalidades .course-topics li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

#modalidades .course-topics .check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-card-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .about-header .section-title {
        font-size: 2.5rem;
    }
    
    .about-text {
        padding-left: 0;
        margin-top: var(--spacing-xl);
    }
    
    .about-text h3 {
        font-size: 1.875rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features .feature-list li {
        font-size: 0.875rem;
    }
    
    /* Modalidades responsividade tablet */
    #modalidades .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    #modalidades .value-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .about-header .section-title {
        font-size: 2rem;
    }
    
    .about-hero-card {
        padding: var(--spacing-lg);
    }
    
    .hero-card-text h3 {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}



/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--spacing-md) 0;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-image {
        width: 10rem;
        height: auto;
        max-height: 3.5rem;
    }
    
    .nav-menu {
        position: relative;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 0;
        top: -0.5rem;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        background: white;
        border-radius: 0.75rem;
        box-shadow: var(--shadow-lg);
        margin-top: 0.5rem;
    }
    
    .nav-list.active {
        display: flex;
    }
    

    
    .stat-item {
        min-width: 150px;
        padding: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    
    /* Carousel Controls Mobile */
    .carousel-control {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .carousel-control.prev {
        left: 1rem;
    }
    
    .carousel-control.next {
        right: 1rem;
    }
    

    
    /* Other sections */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 8rem;
        height: auto;
        max-height: 3rem;
    }
    

    
    .stat-item {
        min-width: 120px;
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Para telas muito pequenas, empilhar verticalmente */
    @media (max-width: 360px) {
        
        .stat-item {
            min-width: 200px;
            padding: var(--spacing-lg);
        }
        
        .stat-number {
            font-size: 2.25rem;
        }
        
        .stat-icon {
            width: 2.25rem;
            height: 2.25rem;
            font-size: 1.125rem;
        }
        
        .stat-label {
            font-size: 0.875rem;
        }
    }
    
    
    .carousel-control {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .carousel-control.prev {
        left: 0.5rem;
    }
    
    .carousel-control.next {
        right: 0.5rem;
    }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Espaçamento para conteúdo abaixo do header fixo */
body {
    padding-top: 5rem; /* 80px */
}

/* Animações */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp FAB - redesigned */
.whatsapp-fab {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 1000;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: radial-gradient(100% 100% at 50% 0%, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-btn i {
    font-size: 26px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.45);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25), 0 10px 24px rgba(16, 185, 129, 0.35);
}


/* Responsive sizing */
@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }
    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }
    .whatsapp-btn i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }
    .whatsapp-btn i {
        font-size: 20px;
    }
}

/* ===== NOVA HERO SECTION ===== */

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fff7ed 100%);
    overflow: hidden;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
}

.hero-bg-circle-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: #e0f2fe;
    animation: float 6s ease-in-out infinite;
}

.hero-bg-circle-2 {
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: #ffedd5;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-bg-circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: #f0f9ff;
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: #0369a1;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(3, 105, 161, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out forwards;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    color: #f97316;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-badge i {
    color: #2563eb;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #1B2638;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Espaçamento entre o título (H1) e o subtítulo dentro dele */
.hero-title > span {
    display: block;
    margin-top: var(--spacing-sm); /* ~8px para melhorar a leitura */
    letter-spacing: 0.02em; /* ajuste de espaçamento entre letras */
}

@media (min-width: 768px) {
    .hero-title > span {
        margin-top: var(--spacing-xs); /* ~4px em telas maiores */
        letter-spacing: 0.005em; /* mais compacto em telas maiores */
    }
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #0369a1 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
    color: #1B2638;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #64748b;
    font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.hero-scroll a:hover {
    color: #1B2638;
}

.hero-scroll a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.2);
}

.hero-scroll span {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-bg-circle-1,
    .hero-bg-circle-2 {
        width: 15rem;
        height: 15rem;
    }
    
    .hero-bg-circle-3 {
        width: 18rem;
        height: 18rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
}

/* Classes para substituir estilos inline */
.animation-delay-2s {
    animation-delay: 2s;
}

.animation-delay-0-2s {
    animation-delay: 0.2s;
}

.animation-delay-0-4s {
    animation-delay: 0.4s;
}

.animation-delay-0-8s {
    animation-delay: 0.8s;
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}



/* Animação suave para o slideshow */
@keyframes slideshow-fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Partners Section */
.partners-section {
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: visible; /* Alterado para permitir que a animação de hover seja visível */
    position: relative;
    padding: 80px 0 100px 0; /* Aumentado padding inferior para acomodar a animação */
}

.partners-carousel {
    width: 100%;
    overflow: visible; /* Alterado para permitir que a animação de hover seja visível */
    position: relative;
    padding: 20px 0; /* Adicionado padding para dar espaço para a animação */
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
    will-change: transform;
    padding: 10px 0; /* Adicionado padding para dar espaço para a animação */
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
    min-width: 200px;
    padding: 10px; /* Adicionado padding para dar espaço para a animação */
    z-index: 1; /* Garantir que o elemento fique acima durante o hover */
    position: relative; /* Necessário para o z-index funcionar */
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 10; /* Elevar o z-index durante o hover */
}

/* Pausar a animação de scroll quando hover em qualquer logo */
.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo svg,
.partner-logo img {
    max-width: 180px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Responsive adjustments for partners section */
@media (max-width: 768px) {
    .partners-section {
        min-height: 280px;
        padding: 60px 0 80px 0; /* Aumentado padding inferior para acomodar a animação */
    }
    
    .partners-carousel {
        padding: 15px 0; /* Ajustado padding para dispositivos menores */
    }
    
    .partners-track {
        gap: 60px;
        animation-duration: 24s; /* mais lento para leitura confortável em tablets/mobile */
        animation-timing-function: linear;
        padding: 8px 0; /* Ajustado padding para dispositivos menores */
    }
    
    .partner-logo {
        padding: 8px; /* Ajustado padding para dispositivos menores */
        position: relative; /* Necessário para o z-index funcionar */
    }
    
    /* Pausar a animação de scroll quando hover em qualquer logo - tablet */
    .partners-track:hover {
        animation-play-state: paused;
    }
    
    .partner-logo svg,
    .partner-logo img {
        max-width: 150px;
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        min-height: 240px;
        padding: 50px 0 70px 0; /* Aumentado padding inferior para acomodar a animação */
    }
    
    .partners-carousel {
        padding: 10px 0; /* Ajustado padding para dispositivos menores */
    }
    
    .partners-track {
        gap: 40px;
        animation-duration: 36s; /* bem mais lento para mobile pequeno */
        animation-timing-function: linear;
        padding: 5px 0; /* Ajustado padding para dispositivos menores */
    }
    
    .partner-logo {
        padding: 5px; /* Ajustado padding para dispositivos menores */
        position: relative; /* Necessário para o z-index funcionar */
    }
    
    /* Pausar a animação de scroll quando hover em qualquer logo - mobile */
    .partners-track:hover {
        animation-play-state: paused;
    }
    
    .partner-logo svg,
    .partner-logo img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* Instructors Section */
.instructors-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.instructor-card {
    border: 1px solid #e2e8f0;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.instructor-card:hover::before {
    left: 100%;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: #0F172A;
}

.instructor-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.instructor-image-container svg {
    transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-image-container svg {
    transform: scale(1.05);
}

.instructor-card h3 {
    transition: color 0.3s ease;
}

.instructor-card:hover h3 {
    color: #0F172A;
}

.instructor-card .bg-blue-50,
.instructor-card .bg-orange-50 {
    transition: all 0.3s ease;
}

.instructor-card:hover .bg-blue-50 {
    background-color: #dbeafe;
    transform: scale(1.02);
}

.instructor-card:hover .bg-orange-50 {
    background-color: #fed7aa;
    transform: scale(1.02);
}

/* Responsive adjustments for instructors section */
@media (min-width: 1024px) {
    .instructors-section .grid {
        align-items: stretch;
    }
    
    .instructor-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        min-height: 520px; /* Altura mínima uniforme */
    }
    
    .instructor-card .p-6 {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Distribui o conteúdo uniformemente */
    }
    
    .instructor-card .flex.items-center.justify-between {
        margin-top: auto;
    }
    
    /* Uniformiza a altura das imagens */
    .instructor-card .instructor-image-container {
        height: 192px; /* h-48 = 12rem = 192px */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-card .instructor-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    /* Uniformiza a altura das descrições */
    .instructor-card .text-gray-600.text-sm.mb-6 {
        min-height: 80px; /* Altura mínima para descrições */
        display: flex;
        align-items: flex-start;
    }
    
    /* Alinha os grids de estatísticas */
    .instructor-card .grid.grid-cols-2.gap-4.mb-6 {
        margin-top: auto;
        margin-bottom: 1.5rem;
    }
    
    /* Garante que os cards de estatísticas tenham altura uniforme */
    .instructor-card .grid.grid-cols-2.gap-4.mb-6 > div {
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1023px) {
    .instructors-section {
        padding: 60px 0;
    }
    
    .instructors-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    /* Alinhamento uniforme para tablets */
    .instructor-card {
        display: flex;
        flex-direction: column;
        min-height: 480px;
    }
    
    .instructor-card .p-6 {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .instructor-card .instructor-image-container {
        height: 192px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-card .text-gray-600.text-sm.mb-6 {
        min-height: 70px;
        display: flex;
        align-items: flex-start;
    }
    
    .instructor-card .grid.grid-cols-2.gap-4.mb-6 > div {
        height: 75px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .instructors-section {
        padding: 40px 0;
    }
    
    .instructors-section .text-center.mb-16 {
        margin-bottom: 3rem;
    }
    
    .instructors-section h2 {
        font-size: 2rem;
    }
    
    .instructor-image-container svg {
        height: 160px;
    }
}

@media (max-width: 640px) {
    .instructors-section {
        padding: 30px 0;
    }
    
    .instructors-section .grid {
        gap: 1.5rem;
    }
    
    .instructor-image-container svg {
        height: 140px;
    }
    
    .instructor-card {
        min-height: 420px;
    }
    
    .instructor-card .p-6 {
        padding: 1.25rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .instructor-card h3 {
        font-size: 1.125rem;
    }
    
    .instructor-card .instructor-image-container {
        height: 160px;
    }
    
    .instructor-card .text-gray-600.text-sm.mb-6 {
        min-height: 60px;
        display: flex;
        align-items: flex-start;
    }
    
    .instructor-card .grid.grid-cols-2.gap-4.mb-6 > div {
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Support Section Styles */
.support-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}



/* FAQ Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0F172A;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    animation: fadeInUp 0.3s ease;
}

.faq-answer.show {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Contact Info Card */
.contact-info-card {
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.contact-info-item {
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
}

/* Responsive adjustments for support section */
@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }
    
    .support-section .text-center.mb-16 {
        margin-bottom: 3rem;
    }
    
    .support-section h2 {
        font-size: 2rem;
    }
    
    .faq-container,
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .support-section {
        padding: 40px 0;
    }
    
    .support-section .container {
        padding: 0 1rem;
    }
    
    .faq-container,
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .support-section h2 {
        font-size: 1.75rem;
    }
    
    .support-section h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-info-item:hover {
        transform: none;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

.instructor-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

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

/* Footer Mobile Styles */
@media (max-width: 480px) {
    footer .grid {
        text-align: center;
    }
    
    footer .grid > div {
        text-align: center;
    }
    
    footer .flex.space-x-4 {
        justify-content: center;
    }
    
    footer .border-t {
        text-align: center;
    }
    
    footer .flex.flex-col.md\\:flex-row {
        text-align: center;
    }
    
    /* Centralizar h2 apenas no mobile */
    h2 {
        text-align: center;
    }
    
    /* Centralizar h3 da seção de contato apenas no mobile */
    .contact-info-card h3 {
        text-align: center;
    }
    
    /* Centralizar logo do footer apenas no mobile */
    footer .lg\\:col-span-2 {
        text-align: center;
    }
    
    footer .lg\\:col-span-2 img {
        margin: 0 auto 1rem auto;
    }
    
    /* Ajustes da Hero Section apenas no mobile */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    /* Título principal no mobile (Material Design v2) */
    h1 {
        font-size: 2.5rem !important; /* ~40px para manter hierarquia adequada */
        line-height: 1.25;
        margin-bottom: 1rem;
        letter-spacing: 0.01em; /* leve ajuste de tracking conforme MD v2 */
    }
    
    /* Descrição menor no mobile */
    .hero-section p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Botões menores no mobile */
    .hero-buttons .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        margin: 0.25rem;
    }
    
    /* Stats menores no mobile */
    .hero-section .counter {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-section .grid div:last-child {
        font-size: 0.75rem;
    }
}

/* ===== GALLERY SECTION - MODERN GRID ===== */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Gallery Grid Container */
.gallery-grid-container {
    position: relative;
    padding: 0 20px;
}

/* Modern Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    grid-auto-flow: dense;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Featured Items */
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* Gallery Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    image-rendering: crisp-edges;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-zoom-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gallery Navigation */
.gallery-navigation {
    margin-top: 3rem;
}

.gallery-load-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gallery-load-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

/* ===== LIGHTBOX MODAL ===== */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.lightbox-counter {
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        gap: 12px;
    }
    
    .gallery-item-large,
    .gallery-item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-zoom-icon {
        font-size: 1.5rem;
    }
    
    .gallery-overlay-text {
        font-size: 0.75rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 16px;
    }
    
    .gallery-grid-container {
        padding: 0 16px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-info {
        bottom: 10px;
    }
}

/* Animation for smooth entrance */
@keyframes galleryFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: galleryFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

/* High quality image rendering */
.gallery-image {
    image-rendering: crisp-edges;
}

/* Focus states for accessibility */
.gallery-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.lightbox-close:focus,
.lightbox-nav:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Loading state */
.gallery-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-image[src] {
    background: none;
    animation: none;
}

/* Media Query para ocultar ícones de redes sociais do cabeçalho em dispositivos móveis */
@media (max-width: 767px) {
    .header-social-icons {
        display: none !important;
    }
}

/* ========================================
   SEÇÃO CRONOGRAMA IMERSÃO INTENSIVA
   CSS Completamente Reescrito - Limpo e Organizado
   ======================================== */

/* Variáveis CSS Customizadas para a Seção de Cronograma */
:root {
    /* Cores específicas da seção */
    --cronograma-primary: #0F172A;
    --cronograma-accent: #06b6d4;
    --cronograma-success: #10b981;
    --cronograma-warning: #f59e0b;
    --cronograma-danger: #ef4444;
    
    /* Gradientes personalizados */
    --cronograma-gradient-primary: linear-gradient(135deg, #0F172A 0%, #06b6d4 100%);
    --cronograma-gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0F172A 100%);
    --cronograma-gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    
    /* Sombras específicas */
    --cronograma-shadow-card: 0 4px 20px rgba(15, 23, 42, 0.08);
    --cronograma-shadow-card-hover: 0 8px 40px rgba(15, 23, 42, 0.15);
    --cronograma-shadow-badge: 0 2px 8px rgba(6, 182, 212, 0.2);
    
    /* Espaçamentos específicos */
    --cronograma-section-padding: 5rem 0;
    --cronograma-container-padding: 0 1rem;
    --cronograma-card-padding: 2rem;
    --cronograma-card-gap: 2rem;
    
    /* Bordas e raios */
    --cronograma-border-radius: 1.5rem;
    --cronograma-badge-radius: 9999px;
    --cronograma-card-border: 1px solid rgba(229, 231, 235, 0.6);
    
    /* Transições */
    --cronograma-transition-fast: 0.2s ease-out;
    --cronograma-transition-normal: 0.3s ease-out;
    --cronograma-transition-slow: 0.5s ease-out;
}

/* Container Principal da Seção */
.cronograma-section {
    padding: var(--cronograma-section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.cronograma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.1) 50%, transparent 100%);
}

.cronograma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--cronograma-container-padding);
}

/* Header da Seção */
.cronograma-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: cronogramaFadeInUp 0.8s ease-out;
}

.cronograma-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: var(--cronograma-badge-radius);
    color: var(--cronograma-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--cronograma-shadow-badge);
    transition: all var(--cronograma-transition-normal);
}

.cronograma-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.cronograma-badge i {
    font-size: 1rem;
}

.cronograma-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cronograma-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cronograma-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #6b7280;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

/* Grid de Cards */
.cronograma-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cronograma-card-gap);
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .cronograma-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Cards dos Dias */
.cronograma-card {
    background: var(--cronograma-gradient-card);
    border-radius: var(--cronograma-border-radius);
    border: var(--cronograma-card-border);
    box-shadow: var(--cronograma-shadow-card);
    overflow: hidden;
    transition: all var(--cronograma-transition-slow);
    position: relative;
    animation: cronogramaSlideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.cronograma-card:nth-child(1) {
    animation-delay: 0.2s;
}

.cronograma-card:nth-child(2) {
    animation-delay: 0.4s;
}

.cronograma-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cronograma-shadow-card-hover);
}

.cronograma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cronograma-gradient-primary);
    opacity: 0;
    transition: opacity var(--cronograma-transition-normal);
}

.cronograma-card:hover::before {
    opacity: 1;
}

/* Header dos Cards */
.cronograma-card-header {
    background: var(--cronograma-gradient-primary);
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cronograma-card:nth-child(2) .cronograma-card-header {
    background: var(--cronograma-gradient-accent);
}

.cronograma-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all var(--cronograma-transition-slow);
}

.cronograma-card:hover .cronograma-card-header::before {
    transform: scale(1.5);
}

.cronograma-card-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cronograma-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--cronograma-transition-normal);
}

.cronograma-card:hover .cronograma-card-icon {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.cronograma-card-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.01em;
}

.cronograma-card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Conteúdo dos Cards */
.cronograma-card-content {
    padding: var(--cronograma-card-padding);
}

.cronograma-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Itens de Horário */
.cronograma-schedule-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all var(--cronograma-transition-normal);
    position: relative;
}

.cronograma-schedule-item:hover {
    background: rgba(15, 23, 42, 0.02);
    transform: translateX(4px);
}

.cronograma-schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color;)
    border-radius: 2px;
    transition: height var(--primary-color;);
}

.cronograma-schedule-item:hover::before {
    height: 60%;
}

.cronograma-time-badge {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    border-radius: var(--cronograma-badge-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 4.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--cronograma-transition-normal);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Badges de horário com cores específicas */
.cronograma-time-badge.primary {
    background: rgba(15, 23, 42, 0.1);
    color: var(--cronograma-primary);
}

.cronograma-time-badge.accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cronograma-accent);
}

.cronograma-time-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--cronograma-warning);
}

.cronograma-schedule-item:hover .cronograma-time-badge {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cronograma-schedule-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cronograma-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.cronograma-schedule-details p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Destaque Especial (Certificação) */
.cronograma-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.cronograma-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cronograma-warning) 0%, #f97316 100%);
}

.cronograma-highlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cronograma-highlight-header i {
    font-size: 1.25rem;
    color: var(--cronograma-warning);
}

.cronograma-highlight-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cronograma-primary);
    margin: 0;
}

.cronograma-highlight p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Seção "O que está incluso" */
.cronograma-includes {
    text-align: center;
    animation: cronogramaFadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.cronograma-includes-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--cronograma-border-radius);
    padding: 3rem 2rem;
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.cronograma-includes-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--cronograma-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.cronograma-includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .cronograma-includes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .cronograma-includes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.cronograma-includes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--cronograma-transition-normal);
}

.cronograma-includes-item:hover {
    transform: translateY(-4px);
}

.cronograma-includes-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--cronograma-transition-normal);
}

.cronograma-includes-icon.primary {
    background: rgba(15, 23, 42, 0.1);
    color: var(--cronograma-primary);
}

.cronograma-includes-icon.accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cronograma-accent);
}

.cronograma-includes-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--cronograma-warning);
}

.cronograma-includes-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--cronograma-success);
}

.cronograma-includes-item:hover .cronograma-includes-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cronograma-includes-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cronograma-primary);
    margin: 0 0 0.5rem 0;
}

.cronograma-includes-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Animações */
@keyframes cronogramaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cronogramaSlideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade Específica */
@media (max-width: 640px) {
    .cronograma-section {
        padding: 3rem 0;
    }
    
    .cronograma-container {
        padding: 0 1rem;
    }
    
    .cronograma-header {
        margin-bottom: 2.5rem;
    }
    
    .cronograma-card-padding {
        padding: 1.5rem;
    }
    
    .cronograma-card-header {
        padding: 1.5rem;
    }
    
    .cronograma-includes-container {
        padding: 2rem 1.5rem;
    }
    
    .cronograma-schedule-item {
        padding: 0.75rem;
    }
    
    .cronograma-time-badge {
        min-width: 4rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        height: 2.25rem;
    }
}

@media (max-width: 480px) {
    .cronograma-card-header-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cronograma-card-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .cronograma-schedule-item {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .cronograma-time-badge {
        align-self: center;
        min-width: 3.5rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        height: 2rem;
    }
}

/* Estados de foco para acessibilidade */
.cronograma-card:focus-within {
    outline: 2px solid var(--cronograma-accent);
    outline-offset: 2px;
}

.cronograma-schedule-item:focus-within {
    background: rgba(15, 23, 42, 0.05);
    outline: 1px solid var(--cronograma-accent);
    outline-offset: 1px;
}

/* Otimizações de performance */
.cronograma-card,
.cronograma-schedule-item,
.cronograma-includes-item {
    will-change: transform;
}

.cronograma-card-header::before {
    will-change: transform;
}

/* Print styles */
@media print {
    .cronograma-section,
    .mentoria-section {
        background: white !important;
        box-shadow: none !important;
    }
}

/* ===================================
   SEÇÃO COMO FUNCIONA A MENTORIA
   =================================== */

/* Variáveis CSS para a seção de mentoria */
:root {
    --mentoria-primary: #0F172A;
    --mentoria-accent: #06b6d4;
    --mentoria-warning: #f59e0b;
    --mentoria-success: #10b981;
    --mentoria-background: #f8fafc;
    --mentoria-card-bg: #ffffff;
    --mentoria-text-primary: #1f2937;
    --mentoria-text-secondary: #64748b;
    --mentoria-border: #e2e8f0;
    --mentoria-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --mentoria-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --mentoria-radius: 1rem;
    --mentoria-badge-radius: 2rem;
    --mentoria-transition-fast: 0.15s ease-out;
    --mentoria-transition-normal: 0.3s ease-out;
    --mentoria-transition-slow: 0.5s ease-out;
}

/* Seção principal */
.mentoria-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mentoria-background) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mentoria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Container principal */
.mentoria-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Header da seção */
.mentoria-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.mentoria-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1B2638 0%, #8b5cf6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--mentoria-badge-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--mentoria-shadow);
    transition: all var(--mentoria-transition-normal);
}

.mentoria-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--mentoria-shadow-hover);
}

.mentoria-badge i {
    font-size: 1rem;
}

.mentoria-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mentoria-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mentoria-description {
    font-size: 1.125rem;
    color: var(--mentoria-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de cards */
.mentoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Cards individuais */
.mentoria-card {
    background: var(--mentoria-card-bg);
    border-radius: var(--mentoria-radius);
    padding: 2rem;
    box-shadow: var(--mentoria-shadow);
    transition: all var(--mentoria-transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mentoria-border);
}

.mentoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mentoria-accent), var(--mentoria-primary));
    transition: all var(--mentoria-transition-normal);
}

.mentoria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mentoria-shadow-hover);
}

.mentoria-card:hover::before {
    height: 6px;
}

/* Header do card */
.mentoria-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mentoria-card-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #0F172A;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px rgba(27, 38, 56, 0.2);
    transition: all var(--mentoria-transition-normal);
}

.mentoria-card:hover .mentoria-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(27, 38, 56, 0.3);
}

.mentoria-card-header-content {
    flex: 1;
}

.mentoria-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mentoria-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mentoria-card-subtitle {
    font-size: 0.95rem;
    color: var(--mentoria-text-secondary);
    line-height: 1.5;
}

/* Conteúdo do card */
.mentoria-card-content {
    position: relative;
}

/* Lista de features */
.mentoria-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mentoria-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 0.5rem;
    transition: all var(--mentoria-transition-fast);
    border-left: 3px solid transparent;
}

.mentoria-feature-item:hover {
    background: rgba(249, 115, 22, 0.05);
    border-left-color: #f97316;
    transform: translateX(4px);
}

.mentoria-feature-item i {
    color: #f97316;
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.mentoria-feature-item span {
    color: var(--mentoria-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}



/* Destaque especial */
.mentoria-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(15, 23, 42, 0.05));
    border-radius: 0.75rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mentoria-highlight i {
    color: var(--mentoria-accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.mentoria-highlight span {
    color: var(--mentoria-primary);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.mentoria-card:nth-child(1) { animation-delay: 0.1s; }
.mentoria-card:nth-child(2) { animation-delay: 0.2s; }
.mentoria-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsividade */
/* Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .mentoria-section {
        padding: 4rem 0;
    }
    
    .mentoria-container {
        padding: 0 1.5rem;
    }
    
    .mentoria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mentoria-card {
        padding: 1.75rem;
    }
    
    .mentoria-title {
        font-size: 2.25rem;
    }
    
    .mentoria-description {
        font-size: 1.0625rem;
    }
}

/* Mobile e Tablets pequenos (max-width: 768px) */
@media (max-width: 768px) {
    .mentoria-section {
        padding: 3rem 0;
    }
    
    .mentoria-container {
        padding: 0 1rem;
    }
    
    .mentoria-header {
        margin-bottom: 2.5rem;
    }
    
    .mentoria-title {
        font-size: 2rem;
    }
    
    .mentoria-description {
        font-size: 1rem;
    }
    
    .mentoria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .mentoria-card {
        padding: 1.5rem;
    }
    
    .mentoria-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mentoria-card-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .mentoria-card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mentoria-card {
        padding: 1.25rem;
    }
    
    .mentoria-feature-item {
        padding: 0.625rem;
    }
    
    .mentoria-highlight {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Estados de foco para acessibilidade */
.mentoria-card:focus-within {
    outline: 2px solid var(--mentoria-accent);
    outline-offset: 2px;
}

.mentoria-feature-item:focus-within {
    background: rgba(6, 182, 212, 0.1);
    outline: 1px solid var(--mentoria-accent);
    outline-offset: 1px;
}

/* Otimizações de performance */
.mentoria-card,
.mentoria-feature-item,
.mentoria-card-icon {
    will-change: transform;
}

.mentoria-card-header::before {
    will-change: transform;
}

/* Print styles */
@media print {
    .mentoria-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .mentoria-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .cronograma-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .cronograma-card-header {
        background: #f5f5f5 !important;
        color: black !important;
    }
}

/* ===== FORMULÁRIO DE MENTORIA ===== */
.formulario-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.formulario-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.formulario-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.formulario-header {
    text-align: center;
    margin-bottom: 3rem;
}

.formulario-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.formulario-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.formulario-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.form-label-small {
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.radio-option:hover {
    color: var(--primary-color);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.conditional-field {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.form-submit {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}



.form-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsividade do Formulário */
/* Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .formulario-section {
        padding: 4rem 0;
    }
    
    .formulario-container {
        padding: 0 1.5rem;
    }
    
    .formulario-title {
        font-size: 2.25rem;
    }
    
    .formulario-card {
        padding: 2.5rem 2rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

/* Mobile e Tablets pequenos (max-width: 768px) */
@media (max-width: 768px) {
    .formulario-section {
        padding: 3rem 0;
    }
    
    .formulario-container {
        padding: 0 1rem;
    }
    
    .formulario-title {
        font-size: 2rem;
    }
    
    .formulario-card {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .formulario-title {
        font-size: 1.75rem;
    }
    
    .formulario-description {
        font-size: 1rem;
    }
    
    .formulario-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .form-input,
    .form-select {
        padding: 0.875rem 1rem;
    }
    

}

/* Estados de validação */
.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA IMERSÃO ===== */

/* Hero Section da Imersão */
.imersao-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.imersao-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.imersao-hero .container {
    position: relative;
    z-index: 2;
}

/* Cronograma Styles */
.cronograma-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cronograma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 0 4px 4px 0;
}

.cronograma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cronograma-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.cronograma-day-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cronograma-day-number.day-1 {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
}

.cronograma-day-number.day-2 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.cronograma-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.cronograma-item:last-child {
    border-bottom: none;
}

.cronograma-item:hover {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 0 -1rem;
}

.cronograma-time {
    min-width: 5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #f97316;
    background: #fff7ed;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 0.25rem;
}

.cronograma-content h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cronograma-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Grid de Benefícios Inclusos */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
}

.beneficio-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.beneficio-icon.primary {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
}

.beneficio-icon.accent {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.beneficio-icon i {
    font-size: 1.5rem;
    color: white;
}

.beneficio-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.beneficio-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section da Imersão */
.imersao-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.imersao-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.imersao-cta .container {
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .cronograma-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cronograma-day-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cronograma-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cronograma-time {
        width: fit-content;
        margin: 0 auto;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .beneficio-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .cronograma-day-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .cronograma-content h4 {
        font-size: 1rem;
    }
    
    .beneficio-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .beneficio-icon i {
        font-size: 1.25rem;
    }
}

/* Animações específicas para imersão */
.cronograma-card.animate {
    animation: fadeInUp 0.6s ease-out;
}

.cronograma-card.animate:nth-child(2) {
    animation-delay: 0.1s;
}

.beneficio-card.animate { animation: fadeInUp 0.6s ease-out; }
.beneficio-card.animate:nth-child(2) { animation-delay: 0.1s; }
.beneficio-card.animate:nth-child(3) { animation-delay: 0.2s; }
.beneficio-card.animate:nth-child(4) { animation-delay: 0.3s; }
.beneficio-card.animate:nth-child(5) { animation-delay: 0.4s; }
.beneficio-card.animate:nth-child(6) { animation-delay: 0.5s; }

/* Estilos para alinhamento uniforme dos cards de modalidades */
#cursos .grid {
    align-items: stretch;
}

#cursos .grid > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#cursos .grid > div > .btn {
    margin-top: auto;
}

/* Garantir altura mínima uniforme para os cards */
#cursos .bg-white {
    min-height: 480px;
}

/* Ajustar espaçamento interno para melhor distribuição */
#cursos .space-y-3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Melhorar alinhamento dos botões */
#cursos .btn.w-full {
    align-self: stretch;
    margin-top: 1.5rem;
}

/* ===== NOVA SEÇÃO DE PARCEIROS ===== */

.new-partners-section {
    position: relative;
    overflow: hidden;
}

.new-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 38, 56, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Grid de Parceiros */
.new-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards de Parceiros */
.partner-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B2638 0%, #06b6d4 50%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

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

.partner-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Logo Container */
.partner-logo-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}



.partner-card:hover .partner-logo-container {
    transform: scale(1.1);
    background: white;
}

.partner-logo-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
}

/* Informações do Parceiro */
.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B2638;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: #1B2638;
}

.partner-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Badge do Parceiro */
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-badge {
    transform: scale(1.05);
}

.partner-badge i {
    font-size: 0.9rem;
}

/* Carrossel de Logos Adicional */
.new-partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.new-partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-new-partners 25s linear infinite;
    width: fit-content;
    will-change: transform;
    padding: 12px 0;
}
/* Pausar a animação ao passar o mouse para melhorar usabilidade */
.new-partners-track:hover {
    animation-play-state: paused;
}

/* ====== Parceiros Estratégicos: Cards Robustos e Consistentes ====== */
.new-partners-carousel {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 16px;
}

.partner-card {
    flex: 0 0 320px;
    width: 320px;
}

.partner-card-inner {
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.partner-card-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.partner-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-bottom: 1.5px dashed rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}

.partner-logo-img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.partner-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-name {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
}

.partner-description {
    font-size: 0.95rem;
    color: #4b5563; /* slate-600 */
    line-height: 1.45;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: none; /* remove contorno */
    background-color: #0ea5e9; /* fundo padrão para contraste */
    color: #ffffff; /* texto branco por padrão */
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
    width: fit-content;
    margin: 6px auto 0;
}

.partner-badge:hover {
    background-color: #ffffff; /* fundo branco no hover */
    color: #000000; /* texto preto no hover */
}

/* Remover contorno padrão ao focar, mantendo aparência limpa */
.partner-badge:focus,
.partner-badge:focus-visible {
    outline: none;
}

/* ====== Responsividade ====== */
@media (max-width: 1024px) {
    .partner-card {
        flex-basis: 280px;
        width: 280px;
    }
    .partner-card-inner {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .partner-card {
        flex-basis: 240px;
        width: 240px;
    }
    .partner-card-inner {
        min-height: 300px;
        padding: 16px;
    }
    .partner-name {
        font-size: 1.1rem;
    }
    .partner-description {
        font-size: 0.9rem;
    }
}

.moving-partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.moving-partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

.moving-partner-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.moving-partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-new-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .new-partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card-inner {
        padding: 1.5rem;
    }
    
    .partner-logo-container {
        width: 100px;
        height: 100px;
    }
    
    .partner-logo-img {
        max-width: 70px;
        max-height: 70px;
    }
    
    .new-partners-track {
        gap: 2rem;
        animation-duration: 20s;
    }
    
    .moving-partner-logo {
        width: 120px;
        height: 70px;
    }
    
    .moving-partner-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .partner-name {
        font-size: 1.25rem;
    }
    
    .partner-description {
        font-size: 0.9rem;
    }
    
    .new-partners-track {
        gap: 1.5rem;
        animation-duration: 15s;
    }
    
    .moving-partner-logo {
        width: 100px;
        height: 60px;
    }
    
    .moving-partner-logo img {
        max-width: 80px;
        max-height: 40px;
    }
}
/* Links dos cards de Instrutores - tornam o card clicável sem afetar o estilo */
.instructor-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.instructor-card-link:focus-visible .instructor-card {
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.5);
}