/* =========================================
   ESTILO: CANTANDO CON JESÚS (DARK & GOLD)
   ========================================= */

:root {
    --gold: #f59e0b;
    --gold-hover: #d97706;
    --dark-bg: #0f172a;       /* Azul marinho profundo */
    --card-bg: #1e293b;       /* Azul acinzentado */
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Merriweather', serif; /* Para toques clássicos */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Tipografia */
h1, h2, h3 { font-family: var(--font-serif); color: #fff; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* Barra de Aviso Topo */
.top-bar {
    background: #78350f; /* Marrom avermelhado de alerta */
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}
.highlight { color: #fcd34d; font-weight: bold; text-transform: uppercase; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-darker { background-color: #0b1120; }

/* Botões */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6); }
.btn-block { display: block; width: 100%; text-align: center; }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Hero Section */
.hero { padding: 80px 0; background: radial-gradient(circle at top right, #342a18, transparent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.badge-gold { 
    background: rgba(245, 158, 11, 0.15); color: var(--gold); 
    padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.9rem;
    display: inline-block; margin-bottom: 20px; border: 1px solid var(--gold);
}
.hero h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; }
.secure-text { display: block; font-size: 0.8rem; color: var(--text-gray); margin-top: 15px; opacity: 0.8; }

.book-mockup img { max-width:80%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); transform: rotate(-3deg); transition: 0.5s; }
.book-mockup:hover img { transform: rotate(0deg) scale(1.05); }

/* Dor & Pain Points */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.pain-item { background: var(--card-bg); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); }
.pain-item i { font-size: 2rem; margin-bottom: 15px; display: block; }
.pain-conclusion { margin-top: 50px; font-size: 1.2rem; background: rgba(245, 158, 11, 0.1); padding: 20px; border-radius: 10px; border-left: 4px solid var(--gold); }

/* Método */
.method-box { background: var(--card-bg); padding: 50px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); margin-top: 30px; }
.method-steps { list-style: none; margin-top: 30px; }
.method-steps li { display: flex; gap: 20px; margin-bottom: 25px; }
.step-icon { 
    width: 50px; height: 50px; background: var(--gold); color: #fff; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.img-placeholder {
    width: 100%; aspect-ratio: 3/4; background: #333; border-radius: 15px; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    border: 2px dashed rgba(255,255,255,0.1);
}

/* Topics Grid */
.topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.topic-card { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 15px; transition: 0.3s; }
.topic-card:hover { background: rgba(245, 158, 11, 0.1); transform: translateY(-5px); }
.topic-card i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }

/* Bonus Section */
.bonus-section { background: linear-gradient(to right, var(--dark-bg), #1e293b); }
.border-gold { border: 2px solid var(--gold); background: transparent; color: var(--gold); }
.badge-free { background: #16a34a; color: #fff; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.8rem; }
.value-text { font-size: 1.1rem; margin-top: 20px; color: #cbd5e1; }

/* Offer Section */
.offer-section { background: url('assets/bg-pattern.png'), var(--dark-bg); }
.offer-card { 
    max-width: 600px; margin: 0 auto; background: var(--card-bg); 
    border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 2px solid var(--gold);
}
.offer-header { background: var(--gold); color: #000; padding: 15px; text-align: center; font-weight: bold; letter-spacing: 2px; }
.offer-body { padding: 40px; text-align: center; }
.stack-list { text-align: left; margin: 30px 0; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 10px; }
.stack-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.highlight-item { color: var(--gold); font-weight: bold; border-bottom: none; }
.price-display s { color: var(--text-gray); font-size: 1.2rem; }
.final-price { color: #fff; font-size: 4rem; font-weight: 800; line-height: 1; margin: 10px 0; font-family: var(--font-serif); }
.final-price .currency { font-size: 2rem; vertical-align: top; }
.final-price .cents { font-size: 2rem; vertical-align: top; }
.one-time { color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.guarantee { display: flex; align-items: center; gap: 15px; margin-top: 30px; text-align: left; font-size: 0.85rem; opacity: 0.8; }
.guarantee img { width: 40px; }

/* Footer */
footer { padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; font-size: 0.9rem; color: var(--text-gray); }
.brand-footer h3 { font-family: var(--font-serif); color: var(--gold); margin-bottom: 10px; }
.links a { color: var(--text-gray); margin: 0 10px; text-decoration: none; }
.links a:hover { color: var(--gold); }

/* Mobile */
@media (max-width: 768px) {
    .grid-2, .pain-grid, .topics-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .method-content { order: 2; }
    .method-img { order: 1; margin-bottom: 30px; }
}

/* Container da Imagem do Bônus */
.img-frame-gold {
    position: relative;
    width: 100%;
    max-width: 400px; /* Largura máxima da capa */
    margin: 0 auto;
    border: 2px solid var(--gold); /* Moldura dourada do print */
    border-radius: 15px;
    padding: 10px; /* Espaço entre a borda e a foto */
    background: rgba(245, 158, 11, 0.05);
    transition: transform 0.3s ease;
}

.img-frame-gold:hover {
    transform: scale(1.02);
}

/* A Imagem em si */
.img-bonus {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Badge "GRATIS" flutuante */
.floating-badge-free {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #16a34a; /* Verde sucesso */
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Moldura Dourada da Capa do Bônus */
.img-frame-gold {
    position: relative;
    border: 2px solid #f59e0b;
    padding: 10px;
    border-radius: 15px;
    background: rgba(245, 158, 11, 0.05);
}

.img-bonus {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #16a34a;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Lista de Checks */
.check-list { list-style: none; margin: 20px 0; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #fff; }
.check-list i { color: #f59e0b; font-size: 0.9rem; }

/* Estilo da Imagem do Checklist */
.img-checklist {
    width: 100%;
    max-width: 500px; /* Tamanho máximo para não estourar */
    height: auto;
    border-radius: 20px; /* Bordas arredondadas */
    border: 2px solid var(--gold); /* Moldura Dourada */
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); /* Sombra elegante */
    display: block;
    margin: 0 auto; /* Centralizar */
    transition: transform 0.3s ease;
}

.img-checklist:hover {
    transform: scale(1.02); /* Leve zoom ao passar o mouse */
}