/* ============================================
   MAIN.CSS — Core styles
   Landing Page Presença Masculina
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --obsidian: #050505;
    --graphite: #121212;
    --graphite-card: #181818;
    --graphite-light: #222222;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.35);
    --champagne: #E8C96A;
    --ivory: #F4F0E6;
    --ivory-dim: rgba(244, 240, 230, 0.75);
    --ivory-muted: rgba(244, 240, 230, 0.45);
    --red: #E74C3C;
    --red-dim: rgba(231, 76, 60, 0.15);

    --font-display: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-editorial: 'Roboto', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width: 1040px;
    --gutter: 20px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--obsidian);
    color: var(--ivory);
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--obsidian);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ivory);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ---------- UTILITIES ---------- */
.highlight-gold { color: var(--gold); }
.highlight-red { color: var(--red); }
.strike-through {
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
    opacity: 0.5;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    background: rgba(212, 175, 55, 0.05);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--ivory-dim);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--obsidian);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s var(--ease-spring), background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: var(--champagne);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-xl {
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    padding: 18px 36px;
    letter-spacing: 0.02em;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory-dim);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* ==========================================
   HEADER WRAPPER & TOP BAR
   ========================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s var(--ease-out);
}

.top-bar {
    background: #0d0d0d;
    color: var(--ivory);
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar.hidden {
    display: none;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.top-bar-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-bar-text {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--ivory-dim);
    line-height: 1.4;
}

.top-bar-text strong {
    color: var(--gold);
    font-weight: 700;
}

.top-bar-close {
    background: none;
    border: none;
    color: var(--ivory-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.top-bar-close:hover {
    color: var(--ivory);
}

/* Header Nav Bar */
.header-nav-bar {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold);
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory-dim);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--obsidian);
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--champagne);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px var(--gutter) 28px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ivory);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-cta {
    background: var(--gold);
    color: var(--obsidian);
    padding: 14px;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 6px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(120px, 15vh, 160px);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(5,5,5,0) 0%, rgba(5,5,5,0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    margin: auto 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    min-width: 0;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.06);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3,
.hero-headline .line-4 {
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--ivory-dim);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual & Book Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-book-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.hero-book-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.25);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.hero-book-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(212, 175, 55, 0.35),
        0 0 0 1px rgba(212, 175, 55, 0.4);
}

.hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.94);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.badge-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.badge-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.badge-text small {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--ivory-dim);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    color: var(--ivory-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    margin-top: 6px;
    animation: bounce 2s infinite;
}

/* ==========================================
   VSL SECTION
   ========================================== */
.vsl-section {
    padding: 80px 0;
    background: var(--graphite);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.vsl-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.vsl-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
}

.vsl-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 18px;
    background: #000;
}

.vsl-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.vsl-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-poster {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 24, 19, 0.96) 0%, rgba(13, 11, 8, 0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.vsl-poster.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vsl-play-btn {
    width: 68px;
    height: 68px;
    cursor: pointer;
    transition: transform 0.3s var(--ease-spring);
}

.vsl-play-btn:hover {
    transform: scale(1.12);
}

.vsl-poster-text {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-style: italic;
    color: var(--ivory-dim);
    max-width: 480px;
    line-height: 1.4;
}

.vsl-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--champagne);
    opacity: 0.85;
    line-height: 1.4;
}

/* ==========================================
   DOR SECTION
   ========================================== */
.dor-section {
    padding: 90px 0;
}

.dor-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.dor-card {
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    background: var(--graphite-card);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
}

.dor-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.dor-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dor-card p {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.4;
}

.dor-break {
    text-align: center;
    margin-bottom: 48px;
}

.break-quote {
    font-family: var(--font-editorial);
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    font-style: italic;
    color: var(--ivory);
    line-height: 1.5;
    padding: 28px var(--gutter);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.break-quote strong {
    color: var(--gold);
    font-style: normal;
}

.dor-stat {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 5.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    width: 100%;
    font-size: 1.05rem;
    color: var(--ivory-dim);
    max-width: 460px;
    margin: 12px auto 0;
    line-height: 1.5;
}

.stat-label strong {
    color: var(--ivory);
}

/* ==========================================
   BRIDGE SECTION
   ========================================== */
.bridge-section {
    padding: 90px 0;
    background: var(--graphite);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.bridge-content {
    max-width: 680px;
    margin: 0 auto;
}

.bridge-headline {
    font-family: var(--font-editorial);
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
}

.bridge-text {
    font-size: 1.1rem;
    color: var(--ivory-dim);
    margin-bottom: 16px;
    line-height: 1.7;
}

.bridge-highlight {
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ivory);
    margin-top: 32px;
    padding: 22px 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.04);
    border-radius: 12px;
}

.bridge-highlight strong {
    color: var(--gold);
    font-style: normal;
}

/* ==========================================
   MECANISMO SECTION
   ========================================== */
.mecanismo-section {
    padding: 90px 0;
    text-align: center;
}

.chain-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 48px auto;
    max-width: 920px;
}

.chain-circle {
    width: clamp(110px, 14vw, 130px);
    height: clamp(110px, 14vw, 130px);
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--graphite-card);
    padding: 12px;
    transition: all 0.3s;
}

.chain-circle span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--ivory);
    text-align: center;
}

.chain-circle.active {
    border-color: var(--gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
}

.chain-circle.active span {
    color: var(--gold);
}

.chain-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.mecanismo-conclusion {
    font-family: var(--font-editorial);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ivory-dim);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ==========================================
   MÉTODO — 6 PILARES
   ========================================== */
.metodo-section {
    padding: 90px 0;
    background: var(--graphite);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pilar-card {
    padding: 28px 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    background: var(--graphite-card);
    text-align: left;
    transition: border-color 0.3s, transform 0.3s;
}

.pilar-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.pilar-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 14px;
    line-height: 1;
}

.pilar-card h3 {
    font-size: 1.2rem;
    color: var(--ivory);
    margin-bottom: 10px;
}

.pilar-card p {
    font-size: 0.95rem;
    color: var(--ivory-dim);
    line-height: 1.6;
}

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

.metodo-aplicacoes h3 {
    font-size: 0.95rem;
    color: var(--ivory-muted);
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aplicacao-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.tag {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.04);
    border-radius: 100px;
    color: var(--ivory-dim);
    transition: all 0.3s;
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* ==========================================
   CONTEÚDO
   ========================================== */
.conteudo-section {
    padding: 90px 0;
}

.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.conteudo-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    background: var(--graphite-card);
    transition: border-color 0.3s, transform 0.3s;
}

.conteudo-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.conteudo-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.conteudo-item h4 {
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 6px;
}

.conteudo-item p {
    font-size: 0.9rem;
    color: var(--ivory-dim);
    line-height: 1.5;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.depoimentos-section {
    padding: 90px 0;
    background: var(--graphite);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.depoimento-card {
    padding: 26px 22px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    background: var(--graphite-card);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s;
}

.depoimento-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.depoimento-card.featured {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.04);
}

.depoimento-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    background: var(--gold);
    color: var(--obsidian);
    padding: 4px 12px;
    border-radius: 100px;
}

.depoimento-stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.depoimento-text {
    font-family: var(--font-editorial);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.6;
    margin-bottom: 20px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.depoimento-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ivory);
}

.depoimento-author span {
    font-size: 0.8rem;
    color: var(--ivory-muted);
}

.rating-summary {
    text-align: center;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.03);
    max-width: 500px;
    margin: 0 auto;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.rating-score span {
    font-size: 1.1rem;
    color: var(--ivory-dim);
    font-weight: 400;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--ivory-dim);
}

/* ==========================================
   BENEFÍCIOS
   ========================================= */
.beneficios-section {
    padding: 90px 0;
}

.beneficios-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: var(--graphite-card);
    transition: background 0.3s, border-color 0.3s;
}

.beneficio-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.beneficio-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.beneficio-item h4 {
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 4px;
}

.beneficio-item p {
    font-size: 0.9rem;
    color: var(--ivory-dim);
    line-height: 1.5;
}

/* ==========================================
   O QUE PIORA
   ========================================== */
.piora-section {
    padding: 90px 0;
    background: var(--graphite);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.piora-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 36px;
}

.piora-item {
    text-align: center;
    padding: 20px 16px;
    border: 1px solid var(--red-dim);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory-dim);
    background: rgba(231, 76, 60, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.piora-x {
    color: var(--red);
    font-weight: 800;
    font-size: 1.1rem;
}

.piora-conclusion {
    text-align: center;
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ivory);
    max-width: 600px;
    margin: 0 auto;
}

.piora-conclusion strong {
    color: var(--gold);
    font-style: normal;
}

/* ==========================================
   ESCASSEZ / URGÊNCIA
   ========================================== */
.escassez-section {
    padding: 90px 0;
    text-align: center;
}

.escassez-content {
    max-width: 640px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold);
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.06);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: pulse-border 2s infinite;
}

.escassez-headline {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    margin-bottom: 14px;
    font-weight: 800;
}

.escassez-text {
    font-size: 1.05rem;
    color: var(--ivory-dim);
    margin-bottom: 36px;
    line-height: 1.6;
}

.counter-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 440px;
    margin: 0 auto 36px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--graphite-card);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 16px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.timer-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.timer-label {
    font-size: 0.7rem;
    color: var(--ivory-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    font-weight: 600;
}

.timer-sep { display: none; }

.escassez-proof {
    max-width: 480px;
    margin: 0 auto;
}

.proof-bar {
    width: 100%;
    height: 10px;
    background: var(--graphite-light);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.proof-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold), var(--champagne));
    border-radius: 100px;
    transition: width 1.5s var(--ease-out);
}

.proof-text {
    font-size: 0.95rem;
    color: var(--ivory-dim);
    line-height: 1.5;
}

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

.proof-count {
    display: block;
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    margin-top: 4px;
}

/* ==========================================
   GARANTIA
   ========================================== */
.garantia-section {
    padding: 80px 0;
    background: var(--graphite);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.garantia-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    background: var(--graphite-card);
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.garantia-badge {
    flex-shrink: 0;
}

.garantia-badge svg {
    width: 64px;
    height: 64px;
}

.garantia-card h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 800;
}

.garantia-card p {
    font-size: 0.95rem;
    color: var(--ivory-dim);
    line-height: 1.6;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-final-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-final-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-final-text {
    font-size: 1.15rem;
    color: var(--ivory-dim);
    margin-bottom: 36px;
}

.cta-final-book {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.book-cover-image {
    width: 100%;
    height: auto;
    max-width: 220px;
    border-radius: 10px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(212, 175, 55, 0.25);
    display: block;
    margin: 0 auto;
}

.cta-final-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cta-final-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ivory-dim);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 48px 0;
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--ivory-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(244, 240, 230, 0.35);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet & Mobile (<= 991px) */
@media (max-width: 991px) {
    .pilares-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        gap: 32px;
    }
}

/* Tablet / Mobile breakpoint (<= 768px) */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: clamp(100px, 14vh, 130px);
        padding-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

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

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost {
        width: 100%;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 8px;
    }

    .hero-book-wrapper {
        max-width: 220px;
    }

    .hero-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    .badge-text {
        font-size: 0.9rem;
    }

    .badge-text small {
        font-size: 0.5rem;
    }

    /* Mechanism flow vertical on mobile */
    .chain-flow {
        flex-direction: column;
        gap: 8px;
    }

    .chain-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }

    .chain-circle {
        width: 120px;
        height: 120px;
    }

    /* Grids */
    .dor-cards {
        grid-template-columns: 1fr;
    }

    .conteudo-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-list {
        grid-template-columns: 1fr;
    }

    .piora-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .garantia-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Small Mobile (<= 520px) */
@media (max-width: 520px) {
    :root {
        --gutter: 16px;
    }

    .top-bar-text {
        font-size: 0.72rem;
    }

    .pilares-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .piora-grid {
        grid-template-columns: 1fr;
    }

    .counter-timer {
        gap: 8px;
    }

    .timer-block {
        padding: 12px 4px;
    }

    .timer-number {
        font-size: 1.6rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }

    .cta-final-meta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}