/* ============================================
   FORMAÇÃO CÓDIGO MOSAICO — Sales Page CSS
   Tema: War Room / Investigação Comportamental
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #111111;
    --accent-red: #C8102E;
    --accent-red-dark: #8B0000;
    --accent-gold: #C49A2B;
    --accent-gold-light: #D4AF37;
    --text-primary: #F0EDE6;
    --text-secondary: #999999;
    --text-muted: #666666;
    --white: #ffffff;
    --black: #000000;

    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-impact: 'Bebas Neue', Impact, sans-serif;

    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 600ms ease;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold-light);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.text-impact {
    font-family: var(--font-impact);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-gold {
    color: var(--accent-gold);
}

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

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

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section--dark {
    background-color: var(--bg-primary);
}

.section--darker {
    background-color: var(--bg-secondary);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* --- Scroll Animations Base --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-right.visible {
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px) rotate(2deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* --- CTA Button Global --- */
.btn-cta {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-red);
    color: var(--white);
    font-family: var(--font-impact);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: pulse-cta 2.5s ease-in-out infinite;
    text-align: center;
}

.btn-cta:hover {
    background: #E0122F;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
    color: var(--white);
}

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

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

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(200, 16, 46, 0.5), 0 0 40px rgba(200, 16, 46, 0.15); }
}

.btn-anchor {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.btn-anchor:hover {
    color: var(--accent-gold);
}

/* ===========================================
   SEÇÃO 0 — BARRA DE URGÊNCIA (sticky topo)
   =========================================== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--accent-red-dark);
    padding: 0.6rem 0;
    text-align: center;
    font-family: var(--font-impact);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.urgency-bar__text {
    text-transform: uppercase;
}

.urgency-bar__timer {
    display: inline-flex;
    gap: 0.3rem;
    animation: timer-pulse 2s ease-in-out infinite;
}

.urgency-bar__timer span {
    background: rgba(0,0,0,0.3);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    min-width: 28px;
    text-align: center;
}

@keyframes timer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

body {
    padding-top: 42px;
}

/* ===========================================
   SEÇÃO 1 — HERO
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(240, 237, 230, 0.15);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.hero__text {
    max-width: 600px;
}

.hero__headline {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hero__headline em {
    font-style: normal;
    color: var(--accent-red);
}

.hero__subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0,0,0,0.5));
    animation: hero-photo-enter 1.2s ease-out both;
}

@keyframes hero-photo-enter {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* SVG Red Thread from Hero */
.hero__thread {
    position: absolute;
    top: 20%;
    left: -30px;
    width: 60px;
    height: 200px;
    z-index: 3;
}

.hero__thread path {
    stroke: var(--accent-red);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-thread 2s ease forwards 1s;
}

@keyframes draw-thread {
    to { stroke-dashoffset: 0; }
}

/* ===========================================
   SEÇÃO 2 — AGITAÇÃO DA DOR
   =========================================== */
.pain-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.pain-section__title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pain-card {
    background: rgba(240, 237, 230, 0.04);
    border: 1px solid rgba(240, 237, 230, 0.08);
    border-left: 3px solid var(--accent-red);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-normal);
}

.pain-card:hover {
    background: rgba(240, 237, 230, 0.07);
    transform: translateY(-3px);
    border-left-color: var(--accent-gold);
}

.pain-card__headline {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pain-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.pain-section__close {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pain-section__close p {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-style: italic;
}

.pain-section__close p strong {
    color: var(--accent-gold);
}

/* ===========================================
   SEÇÃO 3 — AUTORIDADE (Anderson)
   =========================================== */
.authority-section {
    background: var(--bg-primary);
}

.authority__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.authority__photo-wrap {
    position: relative;
}

.authority__photo-wrap img {
    width: 100%;
    border-radius: var(--radius-md);
    filter: contrast(1.1) brightness(0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.authority__photo-wrap::before,
.authority__photo-wrap::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-gold);
    opacity: 0.4;
}

.authority__photo-wrap::before {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
}

.authority__photo-wrap::after {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
}

.authority__thread-line {
    position: absolute;
    right: -40px;
    top: 30%;
    width: 40px;
    height: 2px;
    background: var(--accent-red);
}

.authority__title {
    font-family: var(--font-headline);
    margin-bottom: var(--spacing-md);
}

.authority__bio p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.authority__badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(196, 154, 43, 0.08);
    border: 1px solid rgba(196, 154, 43, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.badge__icon {
    font-size: 1.2rem;
}

/* ===========================================
   SEÇÃO 4 — BIG DOMINO (Revelação)
   =========================================== */
.domino-section {
    background: var(--bg-primary);
    text-align: center;
    overflow: hidden;
}

.domino__headline {
    font-family: var(--font-impact);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.domino__subheadline {
    font-family: var(--font-headline);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.domino__text {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Hexagonal Mosaic */
.mosaic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.mosaic__piece {
    width: 100px;
    height: 115px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(200, 16, 46, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-impact);
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: all 0.8s ease;
    opacity: 0;
    transform: scale(0.5);
}

.mosaic__piece.visible {
    opacity: 1;
    transform: scale(1);
}

.mosaic__piece.complete {
    background: linear-gradient(135deg, rgba(196, 154, 43, 0.3), rgba(196, 154, 43, 0.15));
    color: var(--accent-gold);
}

/* ===========================================
   SEÇÃO 5 — PRODUTO (10 Módulos)
   =========================================== */
.product-section {
    background: var(--bg-secondary);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.2;
    pointer-events: none;
}

.product__header {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.product__header h2 {
    margin-bottom: var(--spacing-sm);
}

.product__header h2 span {
    display: block;
    color: var(--accent-gold);
    font-size: 0.65em;
    margin-top: 0.5rem;
}

.product__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.05rem;
}

.module-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.module-card {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(240, 237, 230, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    border-color: rgba(196, 154, 43, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.module-card__number {
    font-family: var(--font-impact);
    font-size: 2.5rem;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.module-card__name {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.module-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.module-card__stamp {
    font-family: var(--font-impact);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 0.6;
    border: 1px solid rgba(196, 154, 43, 0.3);
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    transform: rotate(-3deg);
}

/* ===========================================
   SEÇÃO 6 — STACK DE VALOR
   =========================================== */
.stack-section {
    background: var(--bg-primary);
}

.stack__title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stack-items {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(240, 237, 230, 0.06);
    transition: background var(--transition-fast);
}

.stack-item:hover {
    background: rgba(240, 237, 230, 0.03);
}

.stack-item__name {
    font-size: 1rem;
    color: var(--text-primary);
    flex: 1;
}

.stack-item__value {
    font-family: var(--font-impact);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    letter-spacing: 0.05em;
}

.stack__total {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.stack__total-number {
    font-family: var(--font-impact);
    font-size: 3.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    letter-spacing: 0.05em;
}

.stack__transition {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.stack__transition p {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--text-primary);
    font-style: italic;
}

.stack__price {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.stack__price-value {
    font-family: var(--font-impact);
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(196, 154, 43, 0.2);
}

.stack__price-value span {
    font-size: 0.4em;
    vertical-align: super;
    color: var(--accent-gold);
}

.stack__microcopy {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

/* ===========================================
   SEÇÃO 7 — DEPOIMENTOS
   =========================================== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials__title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(240, 237, 230, 0.04);
    border: 1px solid rgba(240, 237, 230, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-headline);
    font-size: 4rem;
    color: var(--accent-red);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-card__text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.testimonial-card__country {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================================
   SEÇÃO 8 — GARANTIA
   =========================================== */
.guarantee-section {
    background: var(--bg-primary);
}

.guarantee__box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(196, 154, 43, 0.05);
    border: 1px solid rgba(196, 154, 43, 0.15);
    border-radius: var(--radius-lg);
}

.guarantee__stamp {
    display: inline-block;
    font-family: var(--font-impact);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transform: rotate(-5deg);
}

.guarantee__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.guarantee__text strong {
    color: var(--text-primary);
}

/* ===========================================
   SEÇÃO 9 — FAQ
   =========================================== */
.faq-section {
    background: var(--bg-secondary);
}

.faq__title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 16, 46, 0.15);
}

.faq-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    width: 100%;
    background: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-item__header:hover {
    color: var(--accent-gold);
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__body {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-item__body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   SEÇÃO 10 — CTA FINAL
   =========================================== */
.cta-final {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-final__bg {
    position: absolute;
    inset: 0;
    background: url('DSC00577.jpg') center/cover no-repeat;
    opacity: 0.08;
    filter: grayscale(100%);
}

.cta-final__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: var(--spacing-lg) var(--spacing-md);
}

.cta-final__headline {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

.cta-final__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.cta-option {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.cta-option--a {
    background: rgba(200, 16, 46, 0.08);
    border: 1px solid rgba(200, 16, 46, 0.2);
}

.cta-option--b {
    background: rgba(196, 154, 43, 0.08);
    border: 1px solid rgba(196, 154, 43, 0.2);
}

.cta-option__label {
    font-family: var(--font-impact);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-option--a .cta-option__label { color: var(--accent-red); }
.cta-option--b .cta-option__label { color: var(--accent-gold); }

.cta-option p {
    font-size: 0.95rem;
}

.cta-final__microcopy {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===========================================
   MOBILE STICKY CTA
   =========================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(200, 16, 46, 0.3);
    padding: 0.75rem var(--spacing-sm);
    text-align: center;
}

.mobile-cta .btn-cta {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}

/* ===========================================
   RESPONSIVO
   =========================================== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    .authority__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__image {
        order: -1;
    }
    .hero__image img {
        max-height: 50vh;
    }
    .hero__text {
        max-width: 100%;
    }
    .authority__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .authority__badges {
        justify-content: center;
    }
    .authority__thread-line {
        display: none;
    }
    .cta-final__options {
        grid-template-columns: 1fr;
    }
    .pain-cards {
        grid-template-columns: 1fr;
    }
    .module-cards {
        grid-template-columns: 1fr;
    }
    .mobile-cta {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
    .mosaic__piece {
        width: 75px;
        height: 86px;
        font-size: 1.1rem;
    }
    .urgency-bar {
        font-size: 0.75rem;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    .section {
        padding: var(--spacing-lg) 0;
    }
    .stack__price-value {
        font-size: 4rem;
    }
    .guarantee__stamp {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .btn-cta {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === END CSS === */
