/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #ff7700;
    --dark-bg: #050505;
    --card-bg: #111111;
    --border-color: rgba(255, 119, 0, 0.2);
    --text-light: #e0e0e0;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.destaque {
    color: var(--primary-color);
    font-weight: 800;
}

/* Efeitos Especiais (O Segredo do Design) */
.glow-effect {
    box-shadow: 0 0 25px rgba(255, 119, 0, 0.6);
}

.glow-box {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 119, 0, 0.1);
    border: 1px solid var(--border-color);
}

.glow-box-strong {
    box-shadow: 0 0 50px rgba(255, 119, 0, 0.15), inset 0 0 20px rgba(255, 119, 0, 0.05);
    border: 1px solid rgba(255, 119, 0, 0.4);
    background: radial-gradient(circle at center, #1a0f00 0%, var(--card-bg) 100%);
}

.glow-number {
    filter: drop-shadow(0px 0px 10px rgba(255, 60, 0, 0.5));
}

@keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}
.pulse { animation: pulse 2s infinite ease-in-out; }

/* Botões */
.btn-cta {
    display: inline-block;
    background: linear-gradient(90deg, #ff5500 0%, #ff8800 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 22px 45px;
    border-radius: 8px;
    font-size: 1.1rem;
    margin: 25px 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ffa64d;
}

.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(255, 119, 0, 0.8);
}

.w-100 { width: 100%; }

/* Header e Hero Section */
.hero {
    position: relative;
    /* Puxando a imagem do bombeiro direto do servidor original como fallback seguro */
    background-image: url('https://missao193.com.br/wp-content/uploads/2025/12/bg-total.webp'), linear-gradient(to bottom, #111, #000);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 90vh;
    padding-bottom: 150px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

header {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

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

.logo { max-width: 180px; }

.btn-login {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 50px 0 0 5%;
}

.hero-title-img {
    max-width: 350px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-info {
    font-size: 1.2rem;
    font-weight: 600;
}

/* About Box Flutuante */
.about {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Faz a caixa subir e invadir a imagem do bombeiro */
}

.about-box {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brasao { max-width: 200px; }

.tag {
    display: inline-block;
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.nome-curso { max-width: 300px; display: block; margin-bottom: 15px; }

.about-text p { color: var(--text-light); font-size: 1.05rem; }

/* Features (Cards Numerados) */
.features {
    padding: 80px 0;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

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

.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto 30px; }
.arrow { width: 30px; }

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: border-color 0.3s ease;
}

.feature-card:hover { border-color: var(--primary-color); }

.number { width: 60px; }

.feature-info { flex: 1; }
.feature-info h3 { color: #00D8DE; font-size: 1.3rem; margin-bottom: 10px; }
.feature-info p { color: #ccc; font-size: 0.95rem; }

.mockup { width: 220px; border-radius: 8px; }

/* Plataforma */
.platform {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.platform-header { max-width: 700px; margin: 0 auto 40px; }
.platform-header h2 { font-size: 2.2rem; margin-bottom: 15px; }

.laptop-img { max-width: 100%; width: 800px; position: relative; z-index: 2; margin-top: 20px;}
.platform-bg { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1200px; z-index: 1; opacity: 0.5; }

.continue-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    text-align: left;
    gap: 40px;
}

.continue-text h2 { font-size: 1.8rem; margin-bottom: 15px; }
.continue-text p { color: var(--text-light); }
.continue-img { max-width: 400px; border-radius: 8px; }

/* Oferta e Garantia */
.offer-section { padding: 80px 0; }

.offer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin-bottom: 50px;
}

.guarantee-img { width: 120px; }
.guarantee-text h2 { font-size: 1.8rem; margin-bottom: 10px; }
.guarantee-text p { color: var(--text-light); font-size: 0.95rem; }

.offer-box {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.offer-box h2 { font-size: 1.8rem; margin-bottom: 30px; }

.pricing { margin-bottom: 30px; }
.old-price { text-decoration: line-through; color: #888; font-size: 1.1rem; }
.new-price { font-size: 3rem; font-weight: 900; line-height: 1.2; }
.cash-price { color: #ccc; font-size: 1rem; }

.benefits-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    padding-left: 20px;
}

.benefits-list li {
    margin: 12px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

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

/* Footer */
footer {
    background-color: #000;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
    text-align: center;
}

.whatsapp-contact { margin-bottom: 40px; }
.whatsapp-contact h2 { font-size: 1.8rem; margin-bottom: 10px; }
.whatsapp-contact p { color: #aaa; margin-bottom: 20px; }

.wpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.wpp-icon { width: 50px; transition: transform 0.3s ease; }
.wpp-btn:hover .wpp-icon { transform: scale(1.1); }

.copyright { color: #555; font-size: 0.85rem; }

/* Responsividade */
@media (max-width: 900px) {
    .hero { background-position: center right; }
    .hero-content { margin: 30px auto; text-align: center; }
    .hero-overlay { background: rgba(0,0,0,0.7); }
    
    .about-content, .feature-card, .continue-section, .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .about-box { padding: 30px 20px; }
    .mockup, .continue-img { max-width: 100%; }
    .hidden-mobile { display: none; }
}