/* ==========================================
   MÉTODO RUMO AO DÓLAR - CSS COMPLETO
   ========================================== */

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #f39c12;
    --cor-secundaria: #ff0000;
    --cor-destaque: #ff6600;
    --cor-fundo: #000000;
    --cor-fundo-escuro: #0a0a0a;
    --cor-fundo-medio: #1a1a1a;
    --cor-fundo-claro: #2a2a2a;
    --cor-texto: #ffffff;
    --cor-texto-claro: #cccccc;
    --cor-sucesso: #25d366;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* GRID SYSTEM */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-4 { width: 33.333%; padding: 0 15px; }
.col-3 { width: 25%; padding: 0 15px; }

/* BARRA DE URGÊNCIA */
.urgency-bar {
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-destaque));
    color: var(--cor-texto);
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 999;
    animation: pulse-bar 2s infinite;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* SEÇÕES */
section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--cor-fundo-medio), var(--cor-fundo));
}

.section-darker {
    background: var(--cor-fundo-escuro);
}

.section-gradient {
    background: linear-gradient(135deg, #2a0000, var(--cor-fundo));
}

/* TÍTULOS */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.5rem;
}

.display-1 {
    font-size: 5rem;
    font-weight: 900;
}

.display-2 {
    font-size: 4rem;
    font-weight: 900;
}

.display-3 {
    font-size: 3rem;
    font-weight: 800;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* CORES DE TEXTO */
.text-white { color: var(--cor-texto); }
.text-gold { color: var(--cor-primaria); }
.text-red { color: var(--cor-secundaria); }
.text-orange { color: var(--cor-destaque); }
.text-muted { color: #888; }

/* ALINHAMENTO */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ESPAÇAMENTO */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cor-destaque), var(--cor-secundaria));
    color: var(--cor-texto);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
}

.btn-cta {
    background: linear-gradient(90deg, var(--cor-destaque), var(--cor-secundaria));
    color: var(--cor-texto);
    font-size: 1.5rem;
    padding: 20px 50px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    animation: pulse-button 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

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

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.9);
}

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

/* CARDS */
.card {
    background: linear-gradient(135deg, var(--cor-fundo-claro), var(--cor-fundo-medio));
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    border: 2px solid var(--cor-primaria);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
    border-color: var(--cor-destaque);
}

.card-icon {
    font-size: 3rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

/* Garante que as colunas de cards tenham mesma altura */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* PAIN POINT BOX */
.pain-point {
    background: linear-gradient(135deg, var(--cor-fundo-medio), var(--cor-fundo-claro));
    padding: 40px;
    border-left: 5px solid var(--cor-secundaria);
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* VALUE BOX */
.value-box {
    background: linear-gradient(135deg, var(--cor-fundo-claro), var(--cor-fundo-medio));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--cor-primaria);
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
}

/* WARNING BOX */
.warning-box {
    background: linear-gradient(135deg, #3a0000, #1a0000);
    border: 3px solid var(--cor-secundaria);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

/* SOCIAL PROOF */
.social-proof {
    background: var(--cor-fundo-medio);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid var(--cor-primaria);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-proof img {
    border-radius: 10px;
    margin: 0 auto 15px;
}

/* COUNTDOWN */
.countdown {
    background: var(--cor-secundaria);
    color: var(--cor-texto);
    padding: 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

#countdown-timer {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* GUARANTEE BADGE */
.guarantee-badge {
    background: var(--cor-primaria);
    color: var(--cor-fundo);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
}

/* DIVIDER */
.hr-gold {
    border: none;
    height: 3px;
    background: linear-gradient(to right, rgba(243, 156, 18, 0) 0%, var(--cor-primaria) 50%, rgba(243, 156, 18, 0) 100%);
    margin: 40px 0;
}

/* PRICE */
.strike-through {
    text-decoration: line-through;
    color: #888;
    opacity: 0.6;
}

.price-box {
    background: linear-gradient(135deg, var(--cor-fundo-claro), var(--cor-fundo-medio));
    padding: 60px;
    border-radius: 15px;
    border: 5px solid var(--cor-primaria);
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.4);
}

/* FAQ */
.faq-item {
    background: var(--cor-fundo-medio);
    border: 2px solid var(--cor-primaria);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    background: var(--cor-fundo-medio);
    color: var(--cor-primaria);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--cor-fundo-claro);
}

.faq-answer {
    background: var(--cor-fundo-escuro);
    color: var(--cor-texto);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

/* WHATSAPP BUTTON */
.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--cor-sucesso);
    color: var(--cor-texto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

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

/* FOOTER */
footer {
    background-color: var(--cor-fundo-escuro);
    padding: 40px 0;
    border-top: 3px solid var(--cor-primaria);
}

.social-icons a {
    font-size: 30px;
    color: var(--cor-primaria);
    margin: 0 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--cor-destaque);
    transform: translateY(-5px);
}

/* UTILITÁRIOS */
.fw-bold { font-weight: 700; }
.fw-bolder { font-weight: 900; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 10px; }
.shadow-lg { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

/* LISTA */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    padding: 40px 0;
}

.hero-image {
    padding: 40px 0;
}

.hero-image img {
    border: 5px solid var(--cor-primaria);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.4);
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    
    .display-1 { font-size: 3.5rem; }
    .display-2 { font-size: 3rem; }
    .display-3 { font-size: 2.5rem; }
    
    .col-6 { width: 100%; }
    .col-4 { width: 50%; }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2.2rem; }
    .display-3 { font-size: 2rem; }
    .display-4 { font-size: 1.8rem; }
    
    .col-4 { width: 100%; }
    .col-3 { width: 100%; }
    
    .urgency-bar {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .card, .value-box, .pain-point {
        padding: 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    #countdown-timer {
        font-size: 2rem;
    }
    
    .price-box {
        padding: 30px 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .hero-section {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .display-1 { font-size: 2rem; }
    .display-2 { font-size: 1.8rem; }
    .display-3 { font-size: 1.6rem; }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* ANIMAÇÕES EXTRAS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* LOADING */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* SCROLL SMOOTH */
html {
    scroll-behavior: smooth;
}

/* SELEÇÃO DE TEXTO */
::selection {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
}

::-moz-selection {
    background-color: var(--cor-primaria);
    color: var(--cor-fundo);
}
