/* 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: #cccccc;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 15px;
}

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

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

/* Efeitos Especiais */
.glow-effect {
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
}

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

.glow-box-strong {
    box-shadow: 0 0 40px rgba(255, 119, 0, 0.15), inset 0 0 15px 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 8px rgba(255, 60, 0, 0.6));
}

@keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(8px); }
    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: 18px 35px;
    border-radius: 6px;
    font-size: 1.05rem;
    margin: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ffa64d;
}

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

.w-100 { width: 100%; }

/* Header e Hero Section */
.hero {
    position: relative;
    background-image: url('img/bg-total.webp'); 
    background-color: #111; 
    background-size: cover;
    background-position: center top; 
    background-repeat: no-repeat;
    min-height: 85vh;
    padding-bottom: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 45%, rgba(0,0,0,0) 80%);
    z-index: 1;
}

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

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

.logo { max-width: 140px; }

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px; 
    margin-top: 40px;
    text-align: left; 
}

.hero-title-img {
    max-width: 250px; 
    margin-bottom: 15px;
}

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

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

.price-info {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* About Box Flutuante */
.about {
    position: relative;
    z-index: 10;
    margin-top: -60px; 
}

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

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

.brasao { max-width: 140px; }

.tag {
    display: block;
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

.nome-curso { 
    max-width: 220px; 
    display: block; 
    margin: 0 auto 15px auto; 
}

.about-text p { 
    color: var(--text-light); 
    font-size: 0.95rem; 
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.section-header h2 { font-size: 1.8rem; margin-bottom: 10px; }
.section-header p { color: var(--text-light); max-width: 500px; margin: 0 auto 20px; font-size: 0.95rem; }
.arrow { width: 25px; }

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

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

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

.number { width: 45px; }

.feature-info { flex: 1; }
.feature-info h3 { color: #00D8DE; font-size: 1.1rem; margin-bottom: 5px; }
.feature-info p { color: #aaa; font-size: 0.85rem; line-height: 1.4; }

.mockup { width: 160px; border-radius: 6px; }

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

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

.laptop-img { max-width: 100%; width: 600px; position: relative; z-index: 2; margin-top: 10px;}

.continue-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: left;
    gap: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.continue-text h2 { font-size: 1.4rem; margin-bottom: 10px; }
.continue-text p { color: var(--text-light); font-size: 0.9rem; }
.continue-img { max-width: 300px; border-radius: 6px; }

/* Oferta e Garantia */
.offer-section { padding: 60px 0; background-color: #1a1a1a; }

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

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: center;
    flex-direction: column;
}

.guarantee-img { width: 90px; }
.guarantee-text h2 { font-size: 1.5rem; margin-bottom: 8px; }
.guarantee-text p { color: var(--text-light); font-size: 0.85rem; }

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

.offer-box h2 { font-size: 1.4rem; margin-bottom: 20px; }

.pricing { margin-bottom: 25px; }
.old-price { text-decoration: line-through; color: #777; font-size: 0.95rem; }
.new-price { font-size: 2.5rem; font-weight: 900; line-height: 1.2; margin: 5px 0; }
.cash-price { color: #aaa; font-size: 0.9rem; }

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

.benefits-list li {
    margin: 8px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: #ddd;
}

.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 #111;
    padding: 40px 0 20px;
    text-align: center;
}

.whatsapp-contact { margin-bottom: 30px; }
.whatsapp-contact h2 { font-size: 1.4rem; margin-bottom: 8px; }
.whatsapp-contact p { color: #888; margin-bottom: 15px; font-size: 0.9rem; }

.wpp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.copyright { color: #444; font-size: 0.75rem; }

/* Responsividade */
@media (max-width: 900px) {
    .hero { background-position: 70% center; }
    .hero-overlay { background: rgba(0,0,0,0.8); }
    .hero-content { margin: 30px auto; text-align: center; max-width: 100%; }
    .hero-title-img { margin: 0 auto 15px auto; }
    
    .about-content, .feature-card, .continue-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-box { padding: 25px 15px; margin-top: -30px; }
    .mockup, .continue-img { max-width: 80%; margin: 0 auto; }
}