/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #404040;
    --gold-primary: #FFB800;
    --gold-secondary: #FFC933;
    --gold-dark: #CC9300;
    --yellow-primary: #FFB800;
    --yellow-secondary: #FFD54F;
    --success-color: #10b981;
    --warning-color: #FFB800;
    --dark-bg: #000000;
    --dark-card: #0f0f0f;
    --dark-card-alt: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-gray-dark: #707070;
    --whatsapp-green: #25d366;
    --border-color: #2d2d2d;
    --yellow-wave: #FFB800;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 80px;
    }
}

/* Header com Logo */
.site-header {
    background: var(--dark-bg);
    padding: 20px 0;
    position: relative;
    border-bottom: 3px solid var(--yellow-primary);
}

@media (min-width: 768px) {
    .site-header {
        padding: 24px 0;
    }
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-metodo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-metodo {
        height: 70px;
    }
}

@media (min-width: 1200px) {
    .logo-metodo {
        height: 80px;
    }
}

.logo-metodo:hover {
    transform: scale(1.05);
}

/* Edital Banner */
.edital-banner {
    background: var(--dark-bg);
    padding: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.edital-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--yellow-primary);
    clip-path: ellipse(150% 100% at 50% 100%);
    opacity: 0.1;
}

.edital-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 184, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
}

.edital-container {
    position: relative;
    z-index: 1;
}

.edital-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .edital-banner {
        padding: 32px 0;
    }
    
    .edital-image {
        max-height: 280px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .edital-image {
        max-height: 320px;
    }
}

.edital-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-primary);
    color: #000000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
    animation: pulse 2s infinite;
    border: 2px solid var(--yellow-secondary);
}

@media (min-width: 768px) {
    .edital-badge {
        gap: 10px;
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

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

/* Vagas Banner */
.vagas-banner {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 48px 0;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .vagas-banner {
        padding: 64px 0;
    }
}

@media (min-width: 1200px) {
    .vagas-banner {
        padding: 80px 0;
    }
}

.vagas-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .vagas-title {
        font-size: 2.5rem;
        margin-bottom: 48px;
    }
}

@media (min-width: 1200px) {
    .vagas-title {
        font-size: 3rem;
        margin-bottom: 56px;
    }
}

.vagas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vagas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1200px) {
    .vagas-grid {
        gap: 40px;
    }
}

.vaga-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .vaga-card {
        padding: 40px 36px;
        gap: 28px;
    }
}

@media (min-width: 1200px) {
    .vaga-card {
        padding: 48px 40px;
        gap: 32px;
    }
}

.vaga-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.vaga-superior {
    border-left: 4px solid var(--gold-primary);
}

.vaga-medio {
    border-left: 4px solid var(--primary-color);
}

.vaga-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(212, 175, 55, 0.15));
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .vaga-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .vaga-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}

.vaga-card:hover .vaga-icon {
    transform: scale(1.1) rotate(5deg);
}

.vaga-superior .vaga-icon {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 213, 79, 0.15));
}

.vaga-medio .vaga-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(37, 99, 235, 0.15));
}

.vaga-content {
    flex: 1;
}

.vaga-cargo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .vaga-cargo {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}

@media (min-width: 1200px) {
    .vaga-cargo {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

.vaga-requisito {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .vaga-requisito {
        font-size: 1rem;
        margin-bottom: 18px;
    }
}

@media (min-width: 1200px) {
    .vaga-requisito {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
}

.vaga-salario {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.salario-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

@media (min-width: 768px) {
    .salario-label {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .salario-label {
        font-size: 1rem;
    }
}

.salario-valor {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .salario-valor {
        font-size: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .salario-valor {
        font-size: 2rem;
    }
}

.vaga-medio .salario-valor {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section - Estilo Moderno com Ondulações */
.hero {
    background: var(--dark-bg);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0 100px;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 100px 0 120px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    right: -10%;
    height: 200px;
    background: var(--yellow-primary);
    opacity: 0.08;
    clip-path: ellipse(120% 50% at 50% 100%);
    transform: rotate(-2deg);
}

.hero::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--yellow-primary);
    opacity: 0.05;
    clip-path: ellipse(100% 50% at 50% 0%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1200px) {
    .hero-grid {
        gap: 80px;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 968px) {
    .hero-text {
        order: 1;
    }
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 197, 51, 0.15));
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--yellow-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

@media (min-width: 768px) {
    .hero-badge-top {
        font-size: 0.9rem;
        padding: 12px 24px;
        margin-bottom: 32px;
    }
}

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

.hero-title-modern {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .hero-title-modern {
        font-size: 3.5rem;
        margin-bottom: 32px;
    }
}

@media (min-width: 1200px) {
    .hero-title-modern {
        font-size: 4rem;
    }
}

.hero-subtitle-modern {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
    .hero-subtitle-modern {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 48px;
    }
}

@media (min-width: 1200px) {
    .hero-subtitle-modern {
        font-size: 1.15rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 18px 36px;
        font-size: 1.05rem;
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-secondary));
    color: #000000;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
    font-weight: 700;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.45);
    background: linear-gradient(135deg, var(--yellow-secondary), var(--yellow-primary));
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-image {
    order: 1;
}

@media (min-width: 968px) {
    .hero-image {
        order: 2;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.95), rgba(255, 197, 51, 0.95));
    backdrop-filter: blur(10px);
    color: #000000;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .hero-image-badge {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

.hero-image-badge i {
    font-size: 1.1rem;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(30, 64, 175, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: #000000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: 2px solid var(--gold-secondary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    text-align: center;
    margin: 0 auto 48px;
    display: block;
    width: fit-content;
}

@media (min-width: 768px) {
    .hero-badge {
        margin-bottom: 56px;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 48px 0;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        margin: 64px 0;
        gap: 40px;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 32px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .stat-card {
        padding: 40px 32px;
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid var(--gold-primary);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .stat-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 8px 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
        margin: 10px 0;
    }
}

.stat-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.85;
}

.stat-date {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Opções de Curso Section */
.opcoes-curso {
    padding: 80px 0;
    background: var(--dark-bg);
}

@media (min-width: 768px) {
    .opcoes-curso {
        padding: 120px 0;
    }
}

@media (min-width: 1200px) {
    .opcoes-curso {
        padding: 140px 0;
    }
}

.opcoes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 64px;
}

@media (min-width: 968px) {
    .opcoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px;
    }
}

@media (min-width: 1200px) {
    .opcoes-grid {
        gap: 64px;
    }
}

.opcao-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 32px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .opcao-card {
        padding: 56px 48px;
    }
}

@media (min-width: 1200px) {
    .opcao-card {
        padding: 64px 56px;
    }
}

.opcao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(30, 64, 175, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

.opcao-online {
    border-color: rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.opcao-presencial {
    border-color: rgba(30, 64, 175, 0.3);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.opcao-header {
    text-align: center;
    margin-bottom: 24px;
}

.opcao-header h3 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .opcao-header h3 {
        font-size: 1.1rem;
    }
}

.opcao-header h2 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 900;
}

@media (min-width: 768px) {
    .opcao-header h2 {
        font-size: 1.6rem;
    }
}

.presencial-titulo {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
}

@media (min-width: 768px) {
    .presencial-titulo {
        font-size: 1.5rem !important;
    }
}

.opcao-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .opcao-subtitle {
        font-size: 1rem;
    }
}

.badge-inicio {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .badge-inicio {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}

.presencial-image {
    width: 100%;
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.presencial-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.opcao-presencial:hover .presencial-img {
    transform: scale(1.02);
}

.opcao-preco {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .opcao-preco {
        padding: 32px 24px;
    }
}

.preco-de {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.preco-antigo {
    text-decoration: line-through;
    color: #ef4444;
    font-weight: 600;
}

.badge-destaque {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .badge-destaque {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

.preco-principal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.preco-parcela {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .preco-parcela {
        font-size: 2.5rem;
    }
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .preco-valor {
        font-size: 3rem;
    }
}

.preco-info {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.preco-vista {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

@media (min-width: 768px) {
    .preco-vista {
        font-size: 1.1rem;
    }
}

.presencial-preco {
    flex-direction: column;
    gap: 4px;
}

.preco-texto {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

@media (min-width: 768px) {
    .preco-texto {
        font-size: 1.2rem;
    }
}

.preco-valor-grande {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .preco-valor-grande {
        font-size: 3.5rem;
    }
}

.preco-total {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 8px;
}

@media (min-width: 768px) {
    .preco-total {
        font-size: 1.1rem;
    }
}

.opcao-beneficios {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.opcao-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .opcao-beneficios li {
        font-size: 0.95rem;
    }
}

.opcao-beneficios i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.opcao-beneficios strong {
    color: var(--text-light);
    font-weight: 700;
}

.presencial-botoes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-matriculas-abertas {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .badge-matriculas-abertas {
        font-size: 1.05rem;
        padding: 14px 28px;
    }
}

.btn-opcao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-opcao {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

.btn-online {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.btn-online:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

.btn-presencial {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.4);
}

.btn-presencial:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.6);
}

.btn-presencial i {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .btn-presencial i {
        font-size: 1.8rem;
    }
}

.btn-texto {
    display: block;
}

/* Vídeo Demonstração Section */
.video-demo {
    padding: 80px 0;
    background: var(--dark-bg);
}

@media (min-width: 768px) {
    .video-demo {
        padding: 120px 0;
    }
}

@media (min-width: 1200px) {
    .video-demo {
        padding: 140px 0;
    }
}

.video-demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 64px;
}

@media (min-width: 968px) {
    .video-demo-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1200px) {
    .video-demo-content {
        gap: 80px;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-bg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    animation: pulseTag 2s infinite;
    border: 2px solid var(--gold-secondary);
}

@media (min-width: 640px) {
    .video-tag {
        top: 20px;
        left: 20px;
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 10px;
    }
}

@media (min-width: 968px) {
    .video-tag {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

.video-tag i {
    font-size: 1.2rem;
    animation: playPulse 1.5s infinite;
}

@media (min-width: 640px) {
    .video-tag i {
        font-size: 1.4rem;
    }
}

@keyframes pulseTag {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
    }
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.video-info {
    display: flex;
    align-items: center;
}

.video-info-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .video-info-card {
        padding: 32px;
    }
}

.video-info-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.video-info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .video-info-text h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

.video-info-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--gold-primary);
    border-radius: 8px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .video-info-highlight {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding: 16px 24px;
    }
}

.video-info-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .video-info-text p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 32px;
    }
}

.btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-video {
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn-video {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

.btn-video:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.btn-video i {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .btn-video i {
        font-size: 1.5rem;
    }
}

/* Metodologia Section */
.metodologia {
    padding: 80px 0;
    background: var(--dark-bg);
}

@media (min-width: 768px) {
    .metodologia {
        padding: 120px 0;
    }
}

@media (min-width: 1200px) {
    .metodologia {
        padding: 140px 0;
    }
}

/* Seções Gerais */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 80px;
    }
}

@media (min-width: 1200px) {
    .section-header {
        margin-bottom: 96px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 4rem;
        margin-bottom: 24px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .section-subtitle {
        font-size: 1.35rem;
    }
}

.metodologia-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .metodologia-intro {
        margin: 0 auto 60px;
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

.metodologia-intro strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Curso Info Destaque */
.curso-info-destaque {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 24px;
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .curso-info-destaque {
        padding: 32px;
        gap: 24px;
    }
}

.curso-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

@media (min-width: 768px) {
    .curso-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

.curso-info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--gold-primary);
    font-weight: 700;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .curso-info-content h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
}

.curso-info-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

@media (min-width: 768px) {
    .curso-info-content p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

.curso-info-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 968px) {
    .metodologia-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1200px) {
    .metodologia-grid {
        gap: 56px;
        margin-bottom: 80px;
    }
}

.metodologia-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@media (min-width: 1200px) {
    .metodologia-card {
        padding: 48px 40px;
    }
}

.metodologia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.metodologia-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.metodologia-card.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.metodologia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.metodologia-card:hover .metodologia-icon {
    transform: scale(1.1) rotate(5deg);
}

.metodologia-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.metodologia-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.3);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid var(--primary-color);
}

.feature-badge.special {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    border: 1px solid var(--gold-dark);
}

.metodologia-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-card) 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid var(--primary-color);
}

.metodologia-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.metodologia-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: var(--dark-bg);
}

@media (min-width: 768px) {
    .depoimentos {
        padding: 120px 0;
    }
}

@media (min-width: 1200px) {
    .depoimentos {
        padding: 140px 0;
    }
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 968px) {
    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1200px) {
    .depoimentos-grid {
        gap: 56px;
    }
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

@media (min-width: 1200px) {
    .depoimento-card {
        padding: 48px 40px;
    }
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.depoimento-card.featured {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
}

.depoimento-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.depoimento-footer {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* CTA Final Section */
.cta-final {
    padding: 60px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-final {
        padding: 100px 0;
    }
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
}

.cta-final-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .cta-final-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin: 0 auto 32px;
    }
}

.cta-final-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-light), var(--gold-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .cta-final-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

.cta-final-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-final-subtitle {
        font-size: 1.3rem;
        margin-bottom: 50px;
    }
}

.cta-final-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .cta-final-stats {
        gap: 32px;
        margin-bottom: 50px;
    }
}

.cta-stat {
    background: var(--dark-card);
    padding: 20px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .cta-stat {
        padding: 30px 20px;
        border-radius: 16px;
    }
}

.cta-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.cta-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cta-stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}

.cta-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

@media (min-width: 768px) {
    .cta-stat-label {
        font-size: 0.95rem;
    }
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 32px;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .btn-cta-large {
        padding: 20px 48px;
        font-size: 1.2rem;
        width: auto;
        margin-bottom: 40px;
    }
}

.btn-cta-large:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-cta-large i {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .btn-cta-large i {
        font-size: 1.8rem;
    }
}

.cta-final-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-final-info {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .cta-info-item {
        font-size: 1.05rem;
    }
}

.cta-info-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .cta-info-item i {
        font-size: 1.4rem;
    }
}

/* Aula Cortesia Section */
.aula-cortesia {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .aula-cortesia {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .aula-cortesia {
        padding: 120px 0;
    }
}

.aula-cortesia-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.aula-cortesia-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2.5rem;
    color: #000000;
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .aula-cortesia-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .aula-cortesia-icon {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
        margin-bottom: 48px;
    }
}

.aula-cortesia-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .aula-cortesia-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .aula-cortesia-title {
        font-size: 3.2rem;
        margin-bottom: 24px;
    }
}

.aula-cortesia-subtitle {
    font-size: 1.2rem;
    color: var(--yellow-primary);
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .aula-cortesia-subtitle {
        font-size: 1.4rem;
        margin-bottom: 48px;
    }
}

@media (min-width: 1200px) {
    .aula-cortesia-subtitle {
        font-size: 1.6rem;
        margin-bottom: 56px;
    }
}

.btn-aula-cortesia {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@media (min-width: 768px) {
    .btn-aula-cortesia {
        padding: 22px 48px;
        font-size: 1.2rem;
        gap: 14px;
    }
}

@media (min-width: 1200px) {
    .btn-aula-cortesia {
        padding: 24px 56px;
        font-size: 1.3rem;
    }
}

.btn-aula-cortesia i {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .btn-aula-cortesia i {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .btn-aula-cortesia i {
        font-size: 2.2rem;
    }
}

.btn-aula-cortesia:hover {
    background: #20ba5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 0 30px;
    border-top: 3px solid var(--yellow-primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -10%;
    right: -10%;
    height: 120px;
    background: var(--yellow-primary);
    opacity: 0.05;
    clip-path: ellipse(120% 50% at 50% 0%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-logo-img {
        height: 70px;
    }
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-endereco h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-endereco {
    display: flex;
    flex-direction: column;
}

.endereco-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.endereco-info i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.endereco-info div {
    flex: 1;
}

.endereco-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.endereco-info p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out, float 3s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes slideInRight {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Mobile Optimizations */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-grid,
    .info-cards,
    .metodologia-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .edital-image {
        max-height: 180px;
    }

    .metodologia-cta {
        padding: 32px 20px;
    }

    .metodologia-cta h3 {
        font-size: 1.4rem;
    }
    
    .metodologia-cta p {
        font-size: 0.95rem;
    }
}