/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-blue: #1a365d;
    --primary-orange: #ff7a00;
    --secondary-orange: #ff9500;
    --accent-gold: #ffd700;
    --dark-bg: #2d3748;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #ff7a00, #ff9500);
    --gradient-dark: linear-gradient(135deg, #1a365d, #2d3748);
    --gradient-mix: linear-gradient(135deg, #1a365d, #ff7a00);
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 122, 0, 0.8);
    }
}

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

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

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

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    70% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== ESTILOS DO BODY ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

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

/* ===== HEADER MODERNA ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(white, white), 
                      var(--gradient-mix);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-placeholder {
    padding: 12px 25px;
    background: var(--gradient-dark);
    color: var(--white);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
    border: 2px solid rgba(255, 122, 0, 0.3);
}

.logo-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
    border-color: var(--primary-orange);
}

.logo-text {
    font-size: 26px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.nav-button {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
    background: linear-gradient(135deg, #ff6b00, #ff7a00);
    color: var(--white);
}

/* ===== SUPER HEADLINE ===== */
.super-headline {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.headline-content {
    max-width: 900px;
    margin: 0 auto;
}

.headline-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-blue);
}

.headline-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    opacity: 0.95;
    font-weight: 500;
}

.next-class-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(26, 54, 93, 0.2);
}

.next-class-label {
    font-size: 1rem;
    font-weight: 700;
    color: #cc0000;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.next-class-date {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #cc0000;
    margin: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-dark);
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.highlight {
    color: var(--primary-orange);
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.urgency-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* ===== CONTADOR ===== */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-title {
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 90px;
}

.countdown-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 8px;
    min-width: 90px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-message {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.closed-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.alert {
    color: #856404;
}

.alert h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #ff6b00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
    color: var(--white);
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 50px;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

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

/* ===== BLOCO DE ESCASSEZ ===== */
.scarcity-block {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.scarcity-content {
    max-width: 700px;
    margin: 0 auto;
}

.scarcity-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

.scarcity-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

.scarcity-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--primary-blue);
}

/* ===== BENEFÍCIOS ===== */
.benefits {
    background: var(--white);
}

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

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-orange);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PARA QUEM É (LISTA) ===== */
.audience-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.audience-list {
    max-width: 700px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.audience-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.audience-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.audience-list-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 700;
    flex-shrink: 0;
}

.audience-list-item p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* ===== MÓDULOS ===== */
.modules {
    background: var(--light-bg);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.module-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-orange);
}

.module-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 25px;
}

.module-number {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.module-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.module-list {
    padding: 25px;
    list-style: none;
}

.module-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== BLOCO DE AUTORIDADE (ATUALIZADO) ===== */
.authority-block {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0;
}

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

.authority-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.authority-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    font-weight: 800;
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.authority-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-mix);
    border-radius: 2px;
}

.authority-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.authority-experience-badge {
    display: inline-block;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-orange);
    margin-top: 10px;
}

.authority-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
    opacity: 0;
}

.authority-image-container {
    flex-shrink: 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.authority-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.authority-image {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.authority-image-container:hover .authority-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.authority-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-15deg);
    transition: left 0.7s ease;
    z-index: 1;
}

.authority-image-container:hover::before {
    left: 100%;
}

.authority-image[src=""] {
    display: none;
}

.authority-image[src=""] + .image-placeholder-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

.image-placeholder-text {
    display: none;
}

.authority-text {
    flex: 1;
}

.authority-section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
    color: var(--primary-blue);
}

.authority-subsection-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
    color: var(--accent-gold);
}

.authority-description {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.8;
    color: var(--primary-blue);
}

.authority-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.authority-list li {
    padding: 15px 0;
    padding-left: 40px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.authority-list li:last-child {
    border-bottom: none;
}

.authority-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 15px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.authority-highlight {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
    color: var(--primary-blue);
    font-style: italic;
}

/* ===== ESTATÍSTICAS MODERNIZADAS ===== */
.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.stat-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    opacity: 0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-mix);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.2);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 15px 0;
    display: block;
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== AUDIENCE GRID (ORIGINAL) ===== */
.audience {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.audience-card {
    text-align: center;
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-orange);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.audience-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.audience-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CRONOGRAMA ===== */
.schedule {
    background: var(--light-bg);
}

.schedule-card {
    background: var(--white);
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 5px 20px var(--shadow-light);
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    opacity: 0;
}

.schedule-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.05rem;
}

.schedule-list {
    margin: 35px 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 120px 1fr;
    gap: 20px;
    padding: 18px;
    background: var(--light-bg);
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    align-items: center;
}

.schedule-date {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

.schedule-time {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-topic {
    color: #555;
    font-size: 0.95rem;
}

.schedule-note {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 20px;
}

/* ===== BLOCO DE CERTIFICADO ===== */
.certificate-block {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0;
}

.certificate-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
    opacity: 0;
}

.certificate-image-container {
    flex-shrink: 0;
    position: relative;
}

.certificate-image {
    width: 300px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.certificate-image[src=""] {
    display: none;
}

.certificate-image[src=""] + .image-placeholder-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 220px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

.certificate-content {
    flex: 1;
    text-align: left;
}

.certificate-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.certificate-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

.certificate-text {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    text-align: left;
}

.certificate-highlight {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    text-align: left;
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px var(--shadow-medium);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-author h4 {
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author p {
    color: #999;
    font-size: 0.85rem;
    margin: 3px 0 0;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--primary-orange);
    padding-left: 20px;
}

/* ===== OFERTA ===== */
.offer {
    background: var(--light-bg);
}

.offer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--primary-orange);
    opacity: 0;
}

.offer-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 50px;
    text-align: center;
}

.price-container {
    margin: 20px 0;
}

.old-price {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.old-price .price-value {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.8rem;
}

.new-price .price-value {
    color: var(--accent-gold);
    font-size: 3.5rem;
}

.payment-info {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.95;
}

.bonuses {
    padding: 40px;
    background: var(--light-bg);
}

.bonuses h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.guarantee {
    padding: 40px;
    background: var(--white);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.guarantee-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.final-cta {
    padding: 30px 40px;
    background: var(--light-bg);
    text-align: center;
}

.countdown-mini {
    text-align: center;
    margin-bottom: 20px;
}

.countdown-mini p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ff4444;
    line-height: 1.2;
}

.countdown-mini #countdown-mini {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    padding-left: 5px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item:hover {
    box-shadow: 0 5px 15px var(--shadow-light);
}

.faq-question {
    background: var(--light-bg);
    color: var(--primary-blue);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #e8eef5;
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CTA FINAL FORTE ===== */
.final-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON FLUTUANTE ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8);
    animation: none;
}

/* ===== ESTILOS DE IMAGENS E LINKS ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b00;
}

@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .schedule-card {
        padding: 25px;
    }

    .offer-card {
        margin: 0 -20px;
        border-radius: 0;
    }

    .offer-header {
        padding: 30px 20px;
    }

    .bonuses,
    .guarantee,
    .final-cta {
        padding: 25px 20px;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        font-size: 2rem;
    }

    .benefit-card,
    .audience-card,
    .testimonial-card {
        padding: 25px;
    }

    .module-header {
        padding: 20px;
    }

    .module-list {
        padding: 20px;
    }

    .price-value {
        font-size: 2rem;
    }

    .new-price .price-value {
        font-size: 2.5rem;
    }

    .countdown-container {
        padding: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .authority-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .authority-image-container {
        width: 100%;
    }

    .authority-image,
    .authority-image[src=""] + .image-placeholder-text {
        width: 100%;
        height: 250px;
    }

    .authority-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .authority-text {
        text-align: left;
    }

    .authority-header {
        margin-bottom: 40px;
    }

    .authority-main-title {
        font-size: 1.8rem;
    }

    .authority-subtitle {
        font-size: 1rem;
    }

    .certificate-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .certificate-image-container {
        width: 100%;
    }

    .certificate-image,
    .certificate-image[src=""] + .image-placeholder-text {
        width: 100%;
        height: 200px;
    }

    .certificate-content {
        text-align: center;
    }

    .certificate-text,
    .certificate-highlight {
        text-align: center;
    }

    /* Menu responsivo */
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
    }
}

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

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

    .countdown-number {
        font-size: 1.5rem;
        min-width: 60px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .benefits-grid,
    .modules-grid,
    .audience-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 5px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .headline-title {
        font-size: 1.3rem;
    }

    .headline-subtitle {
        font-size: 0.9rem;
    }

    .scarcity-icon {
        font-size: 3rem;
    }

    .certificate-icon {
        font-size: 3rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .authority-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .authority-main-title {
        font-size: 1.8rem;
    }
}

/* ===== SEÇÃO DE VÍDEO DE APRESENTAÇÃO ===== */
.video-presentation {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.video-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.video-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.video-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.2);
    background: var(--dark-bg);
    aspect-ratio: 9 / 16;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.presentation-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(26, 54, 93, 0.8);
}

.video-wrapper video::-webkit-media-controls-play-button {
    background-color: var(--primary-orange);
}

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

.video-cta .btn {
    animation: popIn 0.6s ease-out 0.4s both;
}

/* ===== RESPONSIVE VIDEO SECTION ===== */
@media (max-width: 768px) {
    .video-presentation {
        padding: 60px 0;
    }

    .video-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .video-wrapper {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .video-cta {
        flex-direction: column;
        gap: 15px;
    }

    .video-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .video-presentation {
        padding: 40px 0;
    }

    .video-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .video-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .video-wrapper {
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .video-cta {
        gap: 10px;
    }

    .video-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
