/* ========================================
   RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Institucionais - PRETO, AZUL MARINHO, LARANJA */
    --primary-black: #000000;
    --primary-dark: #0a0a0a;
    --primary-blue: #001f3f;
    --primary-blue-light: #003366;
    --accent-orange: #ff6600;
    --accent-orange-light: #ff8533;
    --accent-orange-dark: #cc5200;
    
    /* Cores de Suporte */
    --text-primary: #0a0a0a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #001f3f 0%, #000000 100%);
    --gradient-blue: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    --gradient-orange: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 8px 24px rgba(255, 102, 0, 0.4);
    
    /* Tipografia */
    --font-primary: 'Barlow', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Garantir contraste em elementos com fundo branco */
.concurso-card,
.diferencial-card,
.timeline-content,
.cronograma-card {
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   WHATSAPP FLUTUANTE PERMANENTE
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--primary-dark);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-dark);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-brasao {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 102, 0, 0.3));
    transition: all var(--transition-normal);
}

.logo-brasao:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 102, 0, 0.6));
    transform: scale(1.05);
}

.nav-logo i {
    font-size: 28px;
    color: var(--accent-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

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

.nav-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ========================================
   ALERT BAR
======================================== */

.alert-bar {
    background: var(--accent-orange);
    color: white;
    padding: 12px 0;
    margin-top: 70px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.5s ease;
}

.alert-bar i {
    margin-right: 8px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   ACHIEVEMENTS BANNER
======================================== */

.achievements-banner {
    background: linear-gradient(135deg, #001f3f 0%, #000000 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
}

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

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-orange);
}

.achievement-item i {
    font-size: 32px;
    color: var(--accent-orange);
    min-width: 40px;
    text-align: center;
}

.achievement-item > div {
    flex: 1;
}

.achievement-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
}

.achievement-item span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

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

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.92) 0%, rgba(30, 58, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s infinite;
}

.hero-badge i {
    color: white;
    font-size: 20px;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-image-3concursos {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
}

.img-3concursos {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.img-3concursos:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: 700;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 32px;
    color: var(--accent-orange);
}

.info-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ========================================
   PAYMENT OPTIONS
======================================== */

.payment-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    position: relative;
}

.payment-link {
    text-decoration: none;
    cursor: pointer;
}

.payment-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    font-size: 40px;
    line-height: 1;
}

.payment-details {
    text-align: left;
}

.payment-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.9;
    color: white;
}

.payment-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 3px;
    line-height: 1;
}

.payment-method {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    color: white;
}

.payment-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
}

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

.payment-divider {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
    padding: 0 10px;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    background: var(--accent-orange);
    padding: 60px 0;
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-card.featured-stat {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
}

.stat-card.featured-stat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
}

.stat-number::after {
    content: '';
    font-size: 32px;
}

.stat-card:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.stat-date {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.85;
    font-weight: 500;
}

/* ========================================
   SECTIONS GERAIS
======================================== */

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Títulos brancos para seções com fundo escuro */
.stats-section .section-title,
.presencial-highlight-section .section-title,
.final-cta-section .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CONCURSOS SECTION
======================================== */

.concursos-section {
    background: var(--bg-light);
}

.concursos-image-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
}

.concursos-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.concursos-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.concursos-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.concursos-cta .btn-secondary {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
}

.concursos-cta .btn-secondary:hover {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue-light);
    transform: translateY(-3px);
}

/* ========================================
   DIFERENCIAIS SECTION
======================================== */

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-orange);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--accent-orange);
}

.diferencial-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.diferencial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   PRESENCIAL HIGHLIGHT SECTION
======================================== */

.presencial-highlight-section {
    background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.presencial-highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.presencial-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid var(--accent-orange);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.3);
    position: relative;
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 165, 0, 0.6), 0 0 0 5px rgba(255, 165, 0, 0.2);
    }
}

.highlight-warning {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-warning i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    75% { transform: translateX(5px) rotate(5deg); }
}

.highlight-warning h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
}

.highlight-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    min-width: 200px;
}

.schedule-item i {
    font-size: 40px;
    color: var(--accent-orange);
}

.schedule-item strong {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}

.schedule-item span {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-orange);
}

.schedule-divider {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.highlight-benefits {
    margin: 50px 0;
}

.highlight-benefits h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.highlight-benefits h3 i {
    color: var(--accent-orange);
}

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

.benefits-grid .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
    transition: all var(--transition-normal);
}

.benefits-grid .benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.benefits-grid .benefit-item i {
    font-size: 28px;
    color: var(--accent-orange);
    min-width: 30px;
}

.benefits-grid .benefit-item span {
    color: white;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.highlight-location {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 102, 0, 0.15);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    margin: 40px 0;
}

.highlight-location i {
    font-size: 40px;
    color: var(--accent-orange);
    min-width: 40px;
}

.highlight-location strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.highlight-location p {
    color: white;
    font-size: 18px;
    margin: 5px 0;
    font-weight: 500;
}

.location-reference {
    font-size: 16px !important;
    opacity: 0.9;
    font-style: italic;
}

.highlight-cta {
    text-align: center;
    margin-top: 40px;
}

.pulse-button {
    animation: pulse-cta 2s infinite;
    font-size: 18px !important;
    padding: 22px 45px !important;
}

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

.cta-urgency {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========================================
   CRONOGRAMA SECTION
======================================== */

.cronograma-section {
    background: var(--bg-light);
}

.cronograma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.cronograma-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 25px;
    transition: all var(--transition-normal);
}

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

.cronograma-icon {
    font-size: 56px;
    color: var(--primary-blue);
    min-width: 70px;
}

.cronograma-content h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.cronograma-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.cronograma-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cronograma-topics {
    list-style: none;
}

.cronograma-topics li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-primary);
}

.cronograma-topics i {
    color: var(--primary-blue);
}

.cronograma-cta {
    text-align: center;
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-text i {
    color: var(--accent-orange);
    font-size: 24px;
}

/* ========================================
   METODOLOGIA SECTION
======================================== */

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    min-width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.final-cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: white;
}

.final-cta-content {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-badge i {
    color: white;
}

.final-cta-content h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-item i {
    color: var(--accent-orange);
    font-size: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   PROFESSOR SECTION
======================================== */

.professor-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.professor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.professor-image-container {
    position: relative;
}

.professor-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.professor-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.professor-text {
    padding: 20px;
}

.professor-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.professor-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.professor-subtitle strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.professor-message {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.message-icon {
    font-size: 32px;
    color: var(--accent-orange);
    min-width: 40px;
}

.message-content p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.disciplinas-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.disciplinas-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.disciplinas-title i {
    color: var(--accent-orange);
    font-size: 24px;
}

.disciplinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.disciplina-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.disciplina-item:hover {
    background: rgba(255, 102, 0, 0.1);
    border-left-color: var(--accent-orange);
    transform: translateX(5px);
}

.disciplina-item i {
    color: var(--accent-orange);
    font-size: 16px;
    min-width: 16px;
}

.disciplina-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.disciplinas-update {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
}

.disciplinas-update i {
    color: var(--accent-orange);
    font-size: 20px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.disciplinas-update strong {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 15px;
}

.professor-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item.highlight .stat-number {
    color: var(--accent-orange);
    font-size: 56px;
}

.stat-item.highlight .stat-label {
    color: var(--accent-orange);
}

.stat-divider {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
}

.professor-cta {
    text-align: center;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-logo i {
    color: var(--accent-orange);
    font-size: 28px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-orange);
}

.footer-contact i {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.footer-slogan {
    font-weight: 600;
    color: var(--accent-orange);
}

/* ========================================
   SCROLL TO TOP
======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 40px;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-info {
        gap: 20px;
    }
    
    .hero-image-3concursos {
        max-width: 500px;
        margin: 25px auto;
    }
    
    .img-3concursos {
        border-radius: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-divider {
        transform: rotate(90deg);
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .presencial-highlight {
        padding: 30px 20px;
    }
    
    .highlight-warning h2 {
        font-size: 24px;
    }
    
    .schedule-item {
        min-width: 150px;
        padding: 20px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 120px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .cronograma-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .final-cta-content h2 {
        font-size: 32px;
    }
    
    .professor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .professor-title {
        font-size: 32px;
    }
    
    .professor-subtitle {
        font-size: 18px;
    }
    
    .professor-message {
        flex-direction: column;
        text-align: center;
    }
    
    .disciplinas-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    
    .disciplinas-title {
        font-size: 20px;
    }
    
    .disciplinas-update {
        flex-direction: column;
        gap: 8px;
    }
    
    .professor-stats {
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image-3concursos {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .img-3concursos {
        border-radius: 10px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-option {
        width: 100%;
        justify-content: center;
    }
    
    .logo-brasao {
        height: 35px;
    }
    
    .concursos-image-container {
        margin-bottom: 30px;
    }
    
    .concursos-image {
        border-radius: 15px;
    }
    
    .concursos-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .concursos-cta .btn {
        width: 100%;
    }
    
    .presencial-highlight {
        padding: 25px 15px;
    }
    
    .highlight-warning i {
        font-size: 36px;
    }
    
    .highlight-warning h2 {
        font-size: 20px;
    }
    
    .highlight-schedule {
        flex-direction: column;
        gap: 15px;
    }
    
    .schedule-item {
        width: 100%;
    }
    
    .highlight-location {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .cronograma-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .professor-title {
        font-size: 26px;
    }
    
    .professor-subtitle {
        font-size: 16px;
    }
    
    .professor-message {
        padding: 20px;
    }
    
    .disciplinas-section {
        padding: 20px;
    }
    
    .disciplinas-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .disciplina-item {
        padding: 8px 12px;
    }
    
    .disciplinas-title {
        font-size: 18px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .disciplinas-update {
        padding: 12px 15px;
    }
    
    .disciplinas-update strong {
        font-size: 14px;
    }
    
    .message-icon {
        font-size: 24px;
    }
    
    .professor-stats {
        padding: 20px;
        gap: 10px;
    }
    
    .stat-item .stat-number {
        font-size: 36px;
    }
    
    .stat-item.highlight .stat-number {
        font-size: 42px;
    }
    
    .stat-divider {
        font-size: 28px;
    }
}