/* ═══════════════════════════════════════════
   V2 DESIGN SYSTEM — NAVY PREMIUM
   Alta conversão · Desktop-first · Responsivo
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    /* Gold */
    --gold: #C9A84C;
    --gold-light: #E2C06A;
    --gold-dark: #9A7228;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-border: rgba(201, 168, 76, 0.3);

    /* Navy backgrounds — real contrast between sections */
    --bg-base:    #0D1B2E;   /* deep navy — primary bg */
    --bg-surface: #0A1520;   /* darker navy — alternating */
    --bg-card:    #132236;   /* card bg */
    --bg-card-hover: #1A2E47;
    --bg-mid:     #071018;   /* darkest — offer/hero */
    --bg-light:   #162840;   /* lighter navy — subtle contrast */
    --bg-cream:   #F5ECD7;   /* warm cream — high contrast sections */
    --bg-cream-dark: #EDE0C4;

    /* Text */
    --text-primary:   #F0E8D6;  /* warm cream — not cold white */
    --text-secondary: #C4BAA8;  /* warm grey — improved contrast */
    --text-muted:     #8A8070;  /* improved contrast for AA */
    --text-dark:      #1A1208;  /* for cream bg sections */
    --text-dark-muted:#5A5040;

    /* Borders */
    --border:      rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.28);
    --border-cream: rgba(201, 168, 76, 0.2);

    /* Accents */
    --accent-green: #3DAA72;
    --accent-red:   #D94F4F;

    /* CTA */
    --cta-from: #C9A84C;
    --cta-to:   #9A7228;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-cta:  0 6px 32px rgba(201, 168, 76, 0.4);
    --shadow-gold: 0 0 48px rgba(201, 168, 76, 0.18);

    /* Spacing scale */
    --section-py: 96px;
    --section-py-lg: 128px;
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background: var(--bg-base);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Layout containers ── */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Eyebrow label (shared across sections) ── */
.v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.v2-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Proof number ── */
.proof-number {
    font-weight: 700;
    color: var(--gold-light);
}

/* ── Global CTA button ── */
.v2-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px 44px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: var(--shadow-cta);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.4;
}

.v2-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
    pointer-events: none;
}

.v2-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 48px rgba(201, 168, 76, 0.55);
}

.v2-cta-btn svg {
    width: 18px; height: 18px;
    transition: transform 0.22s;
    flex-shrink: 0;
}

.v2-cta-btn:hover svg { transform: translateX(4px); }

/* ── Section divider line ── */
.v2-section-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

@media (max-width: 768px) {
    :root { --section-py: 72px; --section-py-lg: 88px; }
    .container-wide { padding: 0 20px; }
    .container { padding: 0 20px; }
}

@media (max-width: 480px) {
    :root { --section-py: 56px; }
    .container-wide { padding: 0 16px; }
    .container { padding: 0 16px; }
    .v2-cta-btn { width: 100%; justify-content: center; padding: 18px 24px; }
}
