/* ============================================================
   SCRIPTS DE COBRANÇA — Premium Light Theme Landing Page
   ============================================================ */

:root {
    /* ── Paleta Principal ── */
    --primary:        #081221;
    --primary-dark:   #060E15;
    --primary-light:  rgba(8, 18, 33, 0.08);
    --secondary:      #11263D;
    --accent:         #C8A35F;
    --accent-dark:    #A07D3A;
    --accent-light:   rgba(200, 163, 95, 0.12);

    /* ── Neutros ── */
    --neutral-100: #FFFFFF;
    --neutral-200: #F7F8FA;
    --neutral-300: #EAECEF;
    --neutral-400: #444444;

    /* ── Fundos (Light Theme) ── */
    --bg-body:        #FFFFFF;
    --bg-card:        #FFFFFF;
    --bg-card-hover:  #F7F8FA;
    --bg-section-alt: #F7F8FA;

    /* ── Texto ── */
    --text-dark:  #081221;
    --text-body:  #444444;
    --text-muted: #6A7D90;

    /* ── Feedback ── */
    --danger:  #DC2626;
    --success: #16A34A;

    /* ── Bordas ── */
    --border-color:       #EAECEF;
    --border-color-hover: rgba(200, 163, 95, 0.50);

    /* ── Gradientes ── */
    --gradient-cta:    linear-gradient(135deg, #11263D 0%, #081221 100%);
    --gradient-hero:   linear-gradient(160deg, #081221 0%, #11263D 60%, #0A1E35 100%);
    --gradient-accent: linear-gradient(135deg, #C8A35F 0%, #A07D3A 100%);
    --gradient-glass:  linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);

    /* ── Sombras ── */
    --shadow-soft: 0 2px 12px rgba(8, 18, 33, 0.08);
    --shadow-card: 0 4px 24px rgba(8, 18, 33, 0.10);
    --shadow-card-hover: 0 8px 40px rgba(8, 18, 33, 0.14);
    --shadow-cta:  0 8px 28px rgba(200, 163, 95, 0.35);
    --shadow-gold: 0 8px 28px rgba(200, 163, 95, 0.25);

    /* ── Raios ── */
    --radius-l: 24px;
    --radius-m: 16px;
    --radius-s: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 52px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ---- UTILITY CLASSES ---- */
.text-primary {
    color: var(--primary);
}

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

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

.highlight {
    background: linear-gradient(120deg, rgba(200, 163, 95, 0.18) 0%, rgba(200, 163, 95, 0.05) 100%);
    padding: 0.1rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(200, 163, 95, 0.35);
    color: #8A6520;
    white-space: nowrap;
    font-weight: 700;
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #6B4D18 0%, #8A6520 35%, #A07D3A 50%, #8A6520 65%, #6B4D18 100%);
    background-size: 200% 100%;
    animation: shimmer-bar 3s ease infinite;
    color: #FFFFFF;
    padding: 0.7rem 5%;
    font-weight: 800;
    z-index: 99999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes shimmer-bar {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---- HERO SECTION (mantido escuro para impacto) ---- */
.hero-section {
    padding: 4rem 5% 5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(200, 163, 95, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(17, 38, 61, 0.60) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.badge-mvo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 163, 95, 0.15);
    border: 1px solid rgba(200, 163, 95, 0.40);
    color: #C8A35F;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-mvo i {
    font-size: 0.85rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.hero-pricing-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 2rem;
    width: fit-content;
    max-width: 100%;
}

.hero-pricing-badge .old-price {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.15rem;
}

.hero-pricing-badge .new-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    display: block;
}

.hero-pricing-badge .payment-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    display: block;
    margin-bottom: 0;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 420px;
}

.hero-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.feat-preview-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.70);
}

.feat-preview-item i {
    color: #C8A35F;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    min-width: 0; /* evita overflow no grid */
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

/* ---- INTERACTIVE WHATSAPP SIMULATOR ---- */
.simulator-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Force light text on simulator section (overrides critical inline CSS) */
.simulator-section .simulator-header h2 {
    color: #081221;
}

.simulator-section .simulator-header p {
    color: #444444;
}

.simulator-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.simulator-header h2 {
    color: var(--text-dark);
}

.whatsapp-chat-container {
    max-width: 520px;
    margin: 0 auto;
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 18, 33, 0.25);
}

.whatsapp-header {
    background: #1f2c34;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: #5b6b76;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.wa-user-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e9edef;
}

.wa-user-info span {
    font-size: 0.75rem;
    color: #8696a0;
}

.wa-icons {
    color: #aebac1;
    display: flex;
    gap: 1.2rem;
    font-size: 1.1rem;
}

.whatsapp-body {
    padding: 1.5rem 1.2rem;
    height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%230b141a" width="100" height="100"/><path d="M10 10h10v10H10zm20 20h10v10H30z" fill="%23ffffff" fill-opacity=".015"/></svg>');
}

.wa-message {
    max-width: 80%;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.wa-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.wa-message.sent {
    align-self: flex-end;
    background: #005c4b;
    color: #e9edef;
    border-top-right-radius: 0;
}

.wa-message.received {
    align-self: flex-start;
    background: #202c33;
    color: #e9edef;
    border-top-left-radius: 0;
}

/* Forçar texto branco dentro das bolhas — evita herdar o p { color } do tema claro */
.wa-message p,
.wa-message span,
.wa-message div {
    color: #e9edef !important;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 0.7rem;
    color: #8696a0;
    margin-top: 4px;
    text-align: right;
}

.wa-meta i {
    color: #53bdeb;
}

/* Typing Indicator */
.wa-typing {
    align-self: flex-start;
    background: #202c33;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border-top-left-radius: 0;
    display: none;
    align-items: center;
    gap: 4px;
}

.wa-dot {
    width: 6px;
    height: 6px;
    background: #8696a0;
    border-radius: 50%;
    animation: wa-bounce 1.3s infinite ease-in-out;
}

.wa-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Simulator Controls */
.simulator-trigger {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-trigger-chat {
    background: transparent;
    border: 1px dashed rgba(200, 163, 95, 0.50);
    color: #8A6520;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-trigger-chat:hover {
    background: rgba(200, 163, 95, 0.08);
    border-color: var(--accent);
    color: var(--accent-dark);
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
}

.section-eyebrow {
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(220, 38, 38, 0.20);
}

.section-eyebrow.eyebrow-green {
    background: rgba(200, 163, 95, 0.10);
    color: #8A6520;
    border-color: rgba(200, 163, 95, 0.30);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 2.2rem 1.8rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--danger);
    opacity: 0.6;
}

.problem-card:hover {
    border-color: rgba(220, 38, 38, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

.problem-card strong {
    color: var(--text-dark);
}

/* ---- SOLUTION SECTION ---- */
.solution-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.solution-desc {
    max-width: 750px;
    margin: 0 auto 3.5rem;
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
}

.solution-desc strong {
    color: #8A6520;
}

.mvo-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 960px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-l);
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.pillar-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(200, 163, 95, 0.30);
}

.pillar-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.pillar-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- OBJECTION SECTION (PULO DO GATO) ---- */
.objection-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 840px;
    margin: 3rem auto 0;
}

.comparison-card {
    border-radius: var(--radius-l);
    padding: 2.5rem 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
    position: relative;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.comparison-card.bad {
    border-color: rgba(220, 38, 38, 0.20);
}

.comparison-card.good {
    border-color: rgba(200, 163, 95, 0.35);
    background: rgba(200, 163, 95, 0.03);
}

.comparison-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-card.bad .comparison-badge {
    background: rgba(220, 38, 38, 0.10);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.comparison-card.good .comparison-badge {
    background: rgba(200, 163, 95, 0.15);
    color: #8A6520;
    border: 1px solid rgba(200, 163, 95, 0.35);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.comparison-card.good h3 {
    color: #8A6520;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comparison-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-card.bad li i {
    color: var(--danger);
}

.comparison-card.good li i {
    color: #8A6520;
}

/* ---- KIT SECTION (O QUE VOCÊ LEVA) ---- */
.kit-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 3.5rem auto 0;
}

.kit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-l);
    padding: 2.5rem 1.8rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.kit-item:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.kit-icon {
    font-size: 2.2rem;
    color: var(--accent-dark);
    margin-bottom: 1.2rem;
}

.kit-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.kit-item p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- STEPS (COMO FUNCIONA) ---- */
.steps-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
}

.steps-section h2 {
    margin-bottom: 3.5rem;
}

.steps-timeline {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 1.8rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.step-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-card-hover);
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--gradient-cta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(8, 18, 33, 0.25);
}

.step-text h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-text p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

.step-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, rgba(200, 163, 95, 0.40), rgba(200, 163, 95, 0.04));
    margin-left: 2.9rem;
}

/* ---- TARGET AUDIENCE ---- */
.target-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem auto;
}

.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1.8rem;
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    flex: 1;
    min-width: 290px;
    max-width: 340px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.target-card:hover {
    border-color: rgba(200, 163, 95, 0.45);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.target-icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 163, 95, 0.12);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.target-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

.target-card strong {
    color: var(--text-dark);
}

.target-footer {
    font-weight: 800;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.tf-no {
    color: var(--danger);
}

.tf-divider {
    color: var(--text-muted);
    margin: 0 0.8rem;
}

.tf-yes {
    color: #8A6520;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 163, 95, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-offer {
    max-width: 480px;
    margin: 2rem auto;
    border: 2px solid rgba(200, 163, 95, 0.35);
    background: #FFFFFF;
    box-shadow: 0 8px 40px rgba(8, 18, 33, 0.10);
    border-radius: var(--radius-l);
}

.pricing-offer:hover {
    border-color: rgba(200, 163, 95, 0.60);
    box-shadow: 0 12px 50px rgba(8, 18, 33, 0.14);
}

/* ---- COUNTDOWN TIMER ---- */
.countdown-timer {
    background: linear-gradient(135deg, #6B4D18 0%, #8A6520 50%, #A07D3A 100%);
    border-radius: var(--radius-l);
    padding: 1.5rem 2rem;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(138, 101, 32, 0.35);
    border: 1px solid rgba(200, 163, 95, 0.25);
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.countdown-header i {
    font-size: 1.2rem;
    animation: bell-ring 2s infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.time-unit {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.time-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.time-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-top: 0.3rem;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

/* ---- TESTIMONIAL SLIDER ---- */
.testimonials-section {
    padding: 5rem 5%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.testimonials-section .section-eyebrow {
    text-align: center;
    margin-bottom: 0.6rem;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.testimonials-section > .container > p {
    text-align: center;
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.slider-wrapper {
    position: relative;
    width: 100%;       /* ocupa toda a coluna do hero-visual */
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(8, 18, 33, 0.25);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 18, 33, 0.70);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.slider-btn:hover {
    background: rgba(138, 101, 32, 0.90);
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.slider-dot.active {
    background: #8A6520;
    transform: scale(1.3);
}

/* Guarantee Strip */
/* Guarantee Strip */
.guarantee-strip {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    max-width: 500px;
    margin: 2.5rem auto 0;
    background: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-m);
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.guarantee-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 163, 95, 0.12);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(200, 163, 95, 0.28);
}

.guarantee-strip strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.guarantee-strip p {
    color: var(--text-body);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- OFFER CARD ---- */
.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-l);
    padding: 3rem 2rem 2.5rem;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.offer-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #FFFFFF;
    padding: 0.45rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.stars-badge {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    margin-bottom: 1px;
}

.offer-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 1.2rem 0 0.5rem;
    letter-spacing: -0.5px;
}

.old-price {
    display: block;
    color: var(--text-muted);
    font-size: 1.05rem;
    text-decoration: line-through;
}

.new-price {
    display: block;
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0.4rem 0;
}

.payment-info {
    display: block;
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.anchor-text {
    color: #8A6520;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Offer Features List */
.offer-features-list {
    margin: 1.5rem 0 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.offer-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.4;
}

.offer-feat i {
    color: var(--accent-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-feat strong {
    color: var(--text-dark);
}

/* Micro Proof in HERO (dark background — needs white text) */
.hero-section .micro-proof {
    color: rgba(255, 255, 255, 0.65);
}

.hero-section .micro-proof i {
    color: #C8A35F;
}

/* Micro Proof */
.micro-proof {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.micro-proof i {
    color: var(--accent-dark);
}

/* ---- HERO CTA — Degradê dourado sobre fundo navy ---- */
#btn-hero-cta {
    background: linear-gradient(135deg, #A07D3A 0%, #8A6520 55%, #6B4D18 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(138, 101, 32, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(200, 163, 95, 0.30);
    background-size: 200% 200%;
    animation: hero-btn-shimmer 3s ease infinite, pulse-hero-btn 2.5s infinite;
}

#btn-hero-cta:hover {
    background: linear-gradient(135deg, #B8913F 0%, #9A7228 50%, #7A5A1E 100%);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 44px rgba(138, 101, 32, 0.55), 0 4px 16px rgba(0, 0, 0, 0.30);
    animation: none;
}

@keyframes hero-btn-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-hero-btn {
    0%   { box-shadow: 0 8px 32px rgba(138, 101, 32, 0.45), 0 2px 8px rgba(0,0,0,0.25); }
    50%  { box-shadow: 0 8px 32px rgba(138, 101, 32, 0.45), 0 2px 8px rgba(0,0,0,0.25), 0 0 0 10px rgba(138, 101, 32, 0.15); }
    100% { box-shadow: 0 8px 32px rgba(138, 101, 32, 0.45), 0 2px 8px rgba(0,0,0,0.25); }
}

/* ---- CTA BUTTONS ---- */
.btn-cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: #FFFFFF;
    font-weight: 900;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 8px 28px rgba(8, 18, 33, 0.30);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 380px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(8, 18, 33, 0.40);
}

.pulse-cta {
    animation: pulse-cta-anim 2.5s infinite;
}

@keyframes pulse-cta-anim {
    0%   { box-shadow: 0 8px 28px rgba(8, 18, 33, 0.30); }
    50%  { box-shadow: 0 8px 28px rgba(8, 18, 33, 0.30), 0 0 0 10px rgba(8, 18, 33, 0.06); }
    100% { box-shadow: 0 8px 28px rgba(8, 18, 33, 0.30); }
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 0.9rem;
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.faq-item.active {
    background: rgba(200, 163, 95, 0.04);
    border-color: rgba(200, 163, 95, 0.35);
}

.faq-question {
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
    user-select: none;
}

.faq-question i {
    color: var(--accent-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.8rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* ---- WHATSAPP SECTION ---- */
.whatsapp-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
}

.whatsapp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    max-width: 840px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-image img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.contact-text {
    text-align: left;
    max-width: 480px;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    text-align: left;
    color: var(--text-dark);
}

.contact-text > p {
    color: var(--text-body);
    margin-bottom: 1.8rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 800;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.30);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.40);
    opacity: 1;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ---- PURCHASE NOTIFICATION ---- */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(8, 18, 33, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 300px;
    max-width: 340px;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-notification.hide {
    opacity: 0;
    transform: translateX(-400px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.3;
}

.notification-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.notification-text span {
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 990px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-pricing-badge {
        align-items: center;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .slider-wrapper {
        border-radius: 14px;
    }

    .badge-mvo {
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-cta-wrapper {
        margin: 0 auto;
    }

    .hero-features-preview {
        justify-content: center;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
    }

    .urgency-bar {
        font-size: 0.75rem;
        padding: 0.6rem 3%;
        min-height: 48px;
        line-height: 1.4;
    }

    body {
        padding-top: 50px;
    }

    .hero-section {
        padding: 3rem 5% 4rem;
    }

    .problem-grid,
    .mvo-pillars,
    .kit-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-inner {
        flex-direction: column;
        text-align: center;
    }

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

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

    .purchase-notification {
        left: 15px;
        bottom: 15px;
        min-width: 260px;
        max-width: calc(100% - 30px);
        padding: 0.9rem 1.2rem;
    }

    .countdown-timer {
        padding: 1rem;
        border-radius: 16px;
    }

    .countdown-header {
        font-size: 0.85rem;
    }

    .time-unit {
        padding: 0.6rem 0.8rem;
        min-width: 65px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .target-grid {
        flex-direction: column;
        align-items: center;
    }

    .target-card {
        width: 100%;
        max-width: 100%;
    }

    .target-footer {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .tf-divider {
        display: none;
    }

    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .offer-card {
        margin-left: 0;
        margin-right: 0;
    }

    .guarantee-strip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .badge-mvo {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .new-price {
        font-size: 2.8rem;
    }

    .contact-image img {
        width: 130px;
        height: 130px;
    }
}