/* 
   ESTILO LANDING PAGE - KIT MILIONÁRIO OCULTO
   Estilo: Direct Response BR / Hard Sell / Anti-Design
   Foco: Conversão Mobile Classe C/D
*/

:root {
    --black: #000000;
    --dark-grey: #111111;
    --white: #FFFFFF;
    --yellow: #FFD700;
    --green: #00FF66;
    --green-dark: #00CC44;
    --red: #FF0000;
    --red-dark: #CC0000;
    --gray-text: #CCCCCC;
    --font-main: 'Inter', Arial, sans-serif;
    --font-impact: 'Impact', 'Arial Black', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.5;
    font-size: 18px;
    overflow-x: hidden;
}

/* CONTAINER CENTRALIZADO ESTILO TEXTÃO */
.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* TIPOGRAFIA */
h1,
h2,
h3 {
    font-family: var(--font-impact);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 20px;
}

.highlight {
    color: var(--yellow);
}

.highlight-bg {
    background-color: var(--yellow);
    color: var(--black);
    padding: 0 4px;
    font-weight: bold;
}

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

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

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.gray {
    color: var(--gray-text);
}

.red {
    color: var(--red);
}

.green {
    color: var(--green);
}

.small {
    font-size: 14px;
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
}

/* ELEMENTO 1: BARRA DE TOPO */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blink-pulse {
    animation: blink-fade 0.8s ease-in-out infinite alternate;
}

@keyframes blink-fade {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* ESPAÇAMENTO DO TOPO */
.spacer-top {
    height: 60px;
}

/* ELEMENTO 3: HEADLINE */
.main-headline {
    font-size: clamp(28px, 6vw, 44px);
    margin-bottom: 20px;
    color: var(--white);
}

/* ELEMENTO 4: SUB-HEADLINE */
.sub-headline {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* IMAGENS / PLACEHOLDERS */
.img-placeholder {
    width: 100%;
    background-color: #111111;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    font-family: monospace;
    margin-bottom: 10px;
    position: relative;
}

.img-main-result {
    border: 4px solid var(--yellow);
    transform: rotate(-1.5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    margin: 20px 0;
    min-height: 300px;
    /* Mais altura para o destaque */
}

/* Círculo rabiscado simulado */
.circle-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 180px;
    height: 60px;
    border: 4px solid var(--red);
    border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.caption {
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    display: block;
}

/* ELEMENTO 7: BLOCO DE DOR */
.pain-block {
    text-align: left;
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.6;
}

.pain-title {
    color: var(--yellow);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ELEMENTO 10: LISTA BRUTA */
.brutal-list {
    text-align: left;
    margin: 40px 0;
    border-top: 2px solid #222;
}

.list-item {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.list-item-title {
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.list-item-desc {
    color: #888;
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.list-item-price {
    color: var(--red);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: bold;
}

/* ELEMENTO 11: PREÇO */
.price-section {
    margin: 50px 0;
    text-align: center;
}

.price-anchor {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
    margin: 5px 0;
    display: block;
}

.price-highlight {
    font-size: clamp(56px, 12vw, 84px);
    color: var(--green);
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    letter-spacing: -2px;
}

/* BOTÕES CTA */
.cta-button {
    display: block;
    width: 100%;
    background-color: var(--green-dark);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(18px, 5vw, 24px);
    text-align: center;
    padding: 20px 10px;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 204, 68, 0.3);
    margin: 20px 0 10px 0;
    border-bottom: 4px solid #009933;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #00b33c;
    transform: translateY(2px);
    border-bottom-width: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.payment-info {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.scarcity-msg {
    color: var(--red);
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

/* ELEMENTO 13: GARANTIA */
.guarantee-box {
    background-color: #0A0A0A;
    border: 1px solid #222;
    padding: 30px 20px;
    margin: 60px 0;
    border-radius: 4px;
    /* Levemente arredondado, mas bruto */
}

/* ELEMENTO 14: FAQ / OBJEÇÕES */
.faq-block {
    text-align: left;
    margin: 40px 0;
}

.faq-q {
    font-weight: bold;
    font-style: italic;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 5px;
    font-size: 18px;
}

.faq-a {
    color: var(--gray-text);
    font-size: 16px;
}

/* ELEMENTO 16: DUAS OPÇÕES */
.option-box {
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.option-bad {
    border-left: 4px solid #555;
    color: #888;
}

.option-good {
    border-left: 4px solid var(--green);
    background-color: rgba(0, 255, 102, 0.05);
}

/* RODAPÉ MÍNIMO */
footer {
    padding: 40px 20px;
    font-size: 12px;
    color: #444;
    text-align: center;
    border-top: 1px solid #111;
    margin-top: 40px;
}

/* GERAL */
hr {
    border: 0;
    border-top: 1px solid var(--yellow);
    margin: 40px 0;
    opacity: 0.3;
}

::selection {
    background: var(--green);
    color: var(--black);
}

/* Provas Sociais com rotação aleatória */
.proof-img {
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 90%;
}

.rot-1 {
    transform: rotate(1deg);
}

.rot-2 {
    transform: rotate(-1.5deg);
}

.rot-3 {
    transform: rotate(0.5deg);
}

.rot-4 {
    transform: rotate(-1deg);
}

/* Responsividade Mobile */
@media (max-width: 400px) {
    h1 {
        font-size: 32px;
    }

    .price-highlight {
        font-size: 64px;
    }

    body {
        font-size: 16px;
    }
}