/* ===================================
   JEC & PROJUDI - Landing Page V4
   Variação: Premium conversion
   Paleta: Navy, dourado, vinho, papel
   =================================== */

:root {
    --navy: #1B2A4A;
    --navy-deep: #0A1428;
    --navy-mid: #1E3055;
    --navy-soft: #2A3F6A;
    --gold: #C9A84C;
    --gold-bright: #E8C260;
    --gold-deep: #8E7530;
    --cream: #F7F1E3;
    --cream-soft: #FAF6EA;
    --paper: #FDFCF7;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --line: rgba(27, 42, 74, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Selection */
::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

/* Italic helper */
.italic {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--navy-deep);
    color: var(--cream);
    padding: 24px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Top Nav */
.top-nav {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px 32px;
    border-bottom: 1px solid rgba(247, 241, 227, 0.08);
    margin: 0 auto;
    max-width: 1200px;
}

.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.brand-launch {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.brand-year {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-mark {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
}

.nav-meta {
    font-size: 0.78rem;
    color: rgba(247, 241, 227, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-container {
    position: relative;
    z-index: 4;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.tag-badge {
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
}

.tag-line {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(247, 241, 227, 0.7);
}

.hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
    color: var(--cream);
}

.title-line {
    display: block;
}

.hero-title .italic {
    font-weight: 400;
    color: var(--gold-bright);
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(247, 241, 227, 0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 44px;
}

.hero-lead strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-lead em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--cream);
}

.hero-action {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Magnetic Button */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 40px;
    border-radius: 60px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 0;
}

.btn-magnetic:hover::before {
    transform: translateY(0);
}

.btn-magnetic:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.45);
}

.btn-text, .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: var(--transition);
    font-size: 1.3rem;
}

.btn-magnetic:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-magnetic.full {
    width: 100%;
    justify-content: center;
}

.hero-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pricing-strike {
    font-size: 1rem;
    color: rgba(247, 241, 227, 0.5);
    text-decoration: line-through;
}

.pricing-now {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.pricing-tag {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Cover Stage */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-stage {
    position: relative;
    perspective: 1200px;
}

.cover-img {
    max-height: 560px;
    width: auto;
    border-radius: 4px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(201, 168, 76, 0.15);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: var(--transition);
    animation: bookFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.cover-stage:hover .cover-img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
}

@keyframes bookFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(2deg) translateY(-12px); }
}

.cover-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 70%);
    filter: blur(15px);
    z-index: 1;
}

.cover-sticker {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 110px;
    height: 110px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
    animation: stickerSpin 8s linear infinite;
}

@keyframes stickerSpin {
    0% { transform: rotate(15deg); }
    50% { transform: rotate(25deg); }
    100% { transform: rotate(15deg); }
}

.sticker-num {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
}

.sticker-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2px;
    padding: 0 8px;
    letter-spacing: 0.5px;
}

.cover-tag {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--cream);
    color: var(--navy-deep);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transform: rotate(-3deg);
}

/* Hero Marquee */
.hero-marquee {
    margin-top: 60px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    transform: rotate(-1deg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-track span {
    display: inline-block;
    padding-right: 40px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EDITORIAL ===== */
.editorial {
    padding: 140px 0;
    background: var(--paper);
    position: relative;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 950px;
}

.editorial-quote {
    position: sticky;
    top: 40px;
}

.quote-mark {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 12rem;
    color: var(--gold);
    line-height: 0.7;
    display: block;
}

.editorial-text {
    font-family: 'Fraunces', serif;
}

.editorial-lead {
    font-size: 1.9rem;
    line-height: 1.4;
    color: var(--navy-deep);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.editorial-lead mark {
    background: linear-gradient(180deg, transparent 60%, var(--gold-bright) 60%);
    color: var(--navy-deep);
    padding: 0 2px;
}

.editorial-lead em {
    font-style: italic;
    color: var(--gold-deep);
}

.editorial-text > p:not(.editorial-lead):not(.editorial-conclusion) {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.editorial-conclusion {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--navy-deep);
    line-height: 1.4;
    padding-top: 24px;
    border-top: 2px solid var(--gold);
    display: inline-block;
}

/* ===== SECTION HEADS ===== */
.section-head {
    margin-bottom: 70px;
}

.head-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-num {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gold);
}

.meta-line {
    width: 60px;
    height: 1px;
    background: var(--navy-deep);
}

.head-meta.light .meta-line {
    background: var(--cream);
}

.meta-label {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy-deep);
    font-weight: 700;
}

.head-meta.light .meta-label {
    color: var(--cream);
}

.section-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--navy-deep);
}

.section-title.light {
    color: var(--cream);
}

.section-title .italic {
    font-weight: 400;
}

/* ===== CHAPTERS ===== */
.chapters {
    padding: 120px 0;
    background: var(--cream-soft);
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.chapter-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.chapter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.12);
    border-color: var(--gold);
}

.chapter-card.large {
    grid-column: span 2;
}

.chapter-card.dark {
    background: var(--navy-deep);
    color: var(--cream);
    border-color: var(--navy-deep);
}

.chapter-card.dark .chapter-num {
    color: var(--gold);
}

.chapter-card.dark h3 {
    color: var(--cream);
}

.chapter-card.dark p {
    color: rgba(247, 241, 227, 0.75);
}

.chapter-card.gold-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.chapter-card.gold-card .chapter-num {
    color: var(--navy-deep);
    opacity: 0.6;
}

.chapter-card.gold-card h3,
.chapter-card.gold-card p {
    color: var(--navy-deep);
}

.chapter-num {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    opacity: 0.8;
}

.chapter-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 14px;
    line-height: 1.2;
}

.chapter-card p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.chapter-tags {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chapter-tags span {
    background: var(--navy-deep);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.chapter-cta {
    margin-top: 24px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy-deep);
}

/* ===== MOCKUP SECTION ===== */
.mockup-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.mockup-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mockup-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35) saturate(0.8);
}

.mockup-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.mockup-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.mockup-headline {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
    max-width: 700px;
}

/* ===== AUDIENCE (updated) ===== */
.audience {
    padding: 120px 0;
    background: var(--navy-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.audience::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.audience-stack {
    position: relative;
    z-index: 1;
}

.audience-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 48px 32px;
    border-top: 1px solid rgba(247, 241, 227, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    cursor: default;
}

.audience-row:last-child {
    border-bottom: 1px solid rgba(247, 241, 227, 0.1);
}

.audience-row:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.2);
}

.row-icon {
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.3));
    transition: var(--transition);
    align-self: flex-start;
    padding-top: 8px;
}

.audience-row:hover .row-icon {
    transform: scale(1.2);
}

.row-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.row-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 8px;
    width: fit-content;
}

.row-title {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    color: var(--cream);
    line-height: 0.88;
    letter-spacing: -0.04em;
    transition: var(--transition);
    margin-bottom: 16px;
}

.audience-row:hover .row-title {
    color: var(--gold);
}

.row-desc {
    font-size: 0.98rem;
    color: rgba(247, 241, 227, 0.65);
    line-height: 1.7;
    max-width: 560px;
}

.row-cta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.audience-row:hover .row-cta {
    opacity: 1;
    transform: translateX(0);
}

/* ===== AUTHOR ===== */
.author {
    padding: 140px 0;
    background: var(--cream-soft);
}

.author-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.author-portrait {
    position: relative;
}

.author-portrait img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.2);
}

.portrait-frame {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    transform: translate(20px, 20px);
    z-index: 1;
}

.portrait-tag {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--navy-deep);
    color: var(--gold);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.author-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.author-name {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--navy-deep);
    margin-bottom: 28px;
}

.author-name .italic {
    font-weight: 400;
    color: var(--gold);
}

.author-bio {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.author-bio strong {
    color: var(--navy-deep);
}

.author-credentials {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.cred-item strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.cred-item span {
    font-size: 0.82rem;
    color: var(--ink-soft);
    letter-spacing: 0.5px;
}

/* ===== STATEMENT ===== */
.statement {
    padding: 140px 0;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}

.statement-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.statement-text {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
    margin-bottom: 80px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.statement-text span {
    display: block;
}

.statement-text .italic {
    font-weight: 400;
}

.statement-text .underline {
    color: var(--gold);
    border-bottom: 6px solid var(--gold);
    display: inline-block;
    line-height: 0.9;
}

.statement-card {
    background: var(--navy-deep);
    color: var(--cream);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(27, 42, 74, 0.25);
    overflow: hidden;
}

.statement-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.card-left h3 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    font-size: 0.98rem;
    color: rgba(247, 241, 227, 0.85);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-top: 1px solid rgba(247, 241, 227, 0.1);
}

.card-list li:first-child {
    border-top: none;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.card-right {
    text-align: center;
    background: rgba(247, 241, 227, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    z-index: 1;
}

.card-price {
    margin-bottom: 28px;
}

.cp-from {
    display: block;
    font-size: 0.85rem;
    color: rgba(247, 241, 227, 0.5);
    margin-bottom: 6px;
}

.cp-from s {
    color: rgba(247, 241, 227, 0.4);
}

.cp-now {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 3.4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.cp-info {
    display: block;
    font-size: 0.78rem;
    color: rgba(247, 241, 227, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-secure {
    display: block;
    margin-top: 16px;
    font-size: 0.78rem;
    color: rgba(247, 241, 227, 0.5);
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--cream-soft);
}

.faq-list {
    max-width: 850px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

.faq-item summary {
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    transition: var(--transition);
    text-align: right;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item:hover summary {
    padding-left: 12px;
}

.faq-q-num {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.faq-q-text {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy-deep);
    line-height: 1.3;
}

.faq-item p {
    padding: 0 30px 28px 80px;
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    padding: 50px 0;
    color: var(--cream);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(247, 241, 227, 0.5);
    text-align: right;
    line-height: 1.6;
}

.footer-copy a {
    color: var(--gold);
    transition: var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-tag, .hero-action {
        justify-content: center;
    }

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

    .cover-img {
        max-height: 400px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .editorial-quote {
        position: static;
    }

    .quote-mark {
        font-size: 8rem;
    }

    .editorial-lead {
        font-size: 1.5rem;
    }

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

    .chapter-card.large {
        grid-column: span 2;
    }

    .audience-row {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        text-align: left;
        padding: 36px 16px;
    }

    .row-title {
        font-size: 3rem;
    }

    .row-cta {
        display: none;
    }

    .audience-row:hover {
        padding-left: 16px;
        padding-right: 16px;
    }

    .author-feature {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portrait-frame {
        display: none;
    }

    .author-credentials {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cred-item {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .cred-item strong {
        margin-bottom: 0;
    }

    .statement-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .top-nav {
        padding: 0 20px 20px;
    }

    .hero {
        padding-top: 16px;
    }

    .hero-container {
        padding-top: 32px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-action {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .btn-magnetic {
        justify-content: center;
        padding: 18px 28px;
    }

    .hero-pricing {
        justify-content: center;
    }

    .cover-sticker {
        width: 80px;
        height: 80px;
        right: -10px;
        top: -10px;
    }

    .sticker-num {
        font-size: 1.3rem;
    }

    .sticker-label {
        font-size: 0.55rem;
    }

    .cover-tag {
        left: 10px;
        bottom: 20px;
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .hero-marquee {
        margin-top: 40px;
    }

    .editorial,
    .chapters,
    .audience,
    .author,
    .statement,
    .faq {
        padding: 80px 0;
    }

    .editorial-lead {
        font-size: 1.3rem;
    }

    .editorial-conclusion {
        font-size: 1.2rem;
    }

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

    .chapter-card.large {
        grid-column: span 1;
    }

    .chapter-num {
        font-size: 2.4rem;
    }

    .chapter-card h3 {
        font-size: 1.3rem;
    }

    .mockup-section {
        min-height: 360px;
    }

    .mockup-overlay {
        padding: 70px 0;
    }

    .row-title {
        font-size: 1.3rem;
    }

    .author-name {
        font-size: 2.6rem;
    }

    .statement-card {
        padding: 32px 24px;
    }

    .card-left h3 {
        font-size: 1.7rem;
    }

    .cp-now {
        font-size: 2.6rem;
    }

    .card-right {
        padding: 28px 20px;
    }

    .faq-item summary {
        grid-template-columns: 40px 1fr 24px;
        gap: 12px;
        padding: 22px 0;
    }

    .faq-q-text {
        font-size: 1.05rem;
    }

    .faq-item p {
        padding: 0 24px 22px 52px;
        font-size: 0.95rem;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

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

/* =========================================================
   V5 PASS 3 — Ajustes solicitados de conversão
   ========================================================= */

.hero-title,
.section-title,
.statement-text,
.testimonials-head h2,
.author-name,
.risk-title {
    letter-spacing: 0;
}

.section-title {
    line-height: 1.03;
}

.hero-kicker {
    margin-bottom: 12px;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 14px;
    font-size: 1.08rem;
    line-height: 1.58;
}

.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 8px 12px;
    border: 1px solid rgba(240, 208, 115, 0.25);
    border-radius: 8px;
    background: rgba(247, 240, 228, 0.055);
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-social-proof strong,
.hsp-stars {
    color: var(--gold-bright);
}

.hsp-stars {
    letter-spacing: 0.08em;
}

.pricing-note {
    flex-basis: 100%;
    color: rgba(247, 240, 228, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-proof {
    max-width: 640px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-proof span {
    position: relative;
    padding: 9px 13px 9px 34px;
    color: rgba(247, 240, 228, 0.86);
}

.hero-proof span::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    width: 11px;
    height: 7px;
    border-left: 2px solid var(--gold-bright);
    border-bottom: 2px solid var(--gold-bright);
    transform: translateY(-62%) rotate(-45deg);
}

.cover-stage {
    transform: scale(1.1);
    transform-origin: center right;
}

.cover-ambient {
    inset: -76px -58px -54px -58px;
    background:
        radial-gradient(ellipse at 32% 44%, rgba(240, 208, 115, 0.24), transparent 56%),
        radial-gradient(ellipse at 70% 70%, rgba(143, 47, 63, 0.18), transparent 55%),
        radial-gradient(ellipse at 55% 45%, rgba(59, 130, 246, 0.14), transparent 62%);
}

.cover-glow {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.14), rgba(240, 208, 115, 0.18) 38%, transparent 70%);
    filter: blur(58px);
}

.cover-img {
    max-height: 715px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 rgba(0, 0, 0, 0.42) inset,
        -2px 0 0 rgba(0, 0, 0, 0.3) inset,
        0 10px 24px rgba(0, 0, 0, 0.42),
        0 28px 70px rgba(0, 0, 0, 0.52),
        0 70px 130px rgba(9, 17, 31, 0.58),
        0 0 72px rgba(96, 165, 250, 0.12);
}

.cover-shadow {
    width: 90%;
    height: 54px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.78), rgba(9, 17, 31, 0.3) 58%, transparent 82%);
}

.testimonials-intro {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ts-shot {
    overflow: visible;
}

.ts-shot img {
    border-radius: 12px;
}

.ts-badge {
    text-transform: none;
    letter-spacing: 0;
}

.ts-quote {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    background: rgba(9, 17, 31, 0.9);
    border: 1px solid rgba(240, 208, 115, 0.26);
    border-radius: 8px;
    color: var(--cream);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.28;
    box-shadow: 0 12px 34px rgba(9, 17, 31, 0.22);
}

.ts-quote span {
    display: block;
    margin-top: 8px;
    color: var(--gold-bright);
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.audience {
    padding: 72px 0;
}

.audience .section-head {
    margin-bottom: 34px;
}

.audience-row {
    padding: 24px 26px;
}

.row-title {
    font-size: 3.55rem;
    line-height: 0.95;
    margin-bottom: 10px;
}

.row-desc {
    line-height: 1.58;
}

.statement-text {
    line-height: 1.02;
}

.statement-card {
    margin-top: -8px;
}

.final-security {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.final-security span {
    position: relative;
    padding: 9px 9px 9px 25px;
    border: 1px solid rgba(240, 208, 115, 0.2);
    border-radius: 7px;
    background: rgba(247, 240, 228, 0.045);
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.74rem;
    font-weight: 800;
    text-align: left;
}

.final-security span::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    width: 9px;
    height: 6px;
    border-left: 2px solid var(--gold-bright);
    border-bottom: 2px solid var(--gold-bright);
    transform: translateY(-62%) rotate(-45deg);
}

.faq-list {
    width: 100%;
    max-width: none;
    gap: 14px;
}

.faq-item {
    border-color: rgba(201, 154, 62, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 10px 30px rgba(9, 17, 31, 0.045);
}

.faq-item:hover {
    border-color: rgba(201, 154, 62, 0.48);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 18px 46px rgba(9, 17, 31, 0.08),
        0 0 0 1px rgba(240, 208, 115, 0.08);
}

.faq-q-text {
    line-height: 1.28;
}

@media (max-width: 992px) {
    .cover-stage {
        transform: none;
        transform-origin: center;
    }

    .cover-img {
        max-height: 580px;
    }

    .hero-social-proof {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.hero-in-view .sticky-conversion {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
        pointer-events: none;
    }

    .top-nav {
        display: none;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-container {
        padding-top: 12px;
    }

    .hero-tag {
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 2.45rem;
        margin-bottom: 12px;
    }

    .hero-kicker {
        font-size: 0.96rem;
        margin-bottom: 8px;
    }

    .hero-lead {
        font-size: 0.86rem;
        line-height: 1.38;
        margin-bottom: 10px;
    }

    .hero-social-proof {
        display: flex;
        flex-wrap: wrap;
        justify-items: center;
        justify-content: center;
        gap: 4px 8px;
        width: 100%;
        margin-bottom: 12px;
        padding: 6px 8px;
        font-size: 0.72rem;
    }

    .hero-proof {
        display: grid;
        margin: 0 0 10px;
        gap: 6px;
    }

    .hero-proof span {
        font-size: 0.69rem;
        line-height: 1.22;
        padding-top: 6px;
        padding-bottom: 6px;
        text-align: left;
    }

    .hero-action {
        gap: 12px;
        margin-bottom: 12px;
    }

    .btn-magnetic {
        min-height: 48px;
    }

    .cover-img {
        max-height: 430px;
    }

    .ts-quote {
        position: static;
        margin: -8px 8px 10px;
        font-size: 0.82rem;
    }

    .audience {
        padding: 58px 0;
    }

    .audience-row {
        padding: 20px 12px;
    }

    .row-title {
        font-size: 2.35rem;
    }

    .final-security {
        grid-template-columns: 1fr;
    }

    .faq-list {
        gap: 10px;
    }
}

/* Carrossel textual de depoimentos */
.testimonial-wall-v2 {
    display: none;
}

.testimonial-carousel {
    position: relative;
    padding: 0 58px;
}

.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 18px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    min-height: 360px;
    padding: 28px;
    border: 1px solid rgba(201, 154, 62, 0.22);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 250, 245, 0.96)),
        var(--paper);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78) inset,
        0 18px 46px rgba(9, 17, 31, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(143, 47, 63, 0.1);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.testimonial-card p {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.34;
    color: var(--navy-deep);
}

.testimonial-author {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 3px;
}

.testimonial-author strong {
    color: var(--navy-deep);
    font-size: 0.95rem;
    font-weight: 900;
}

.testimonial-author span {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 154, 62, 0.32);
    border-radius: 999px;
    background: var(--navy-deep);
    color: var(--gold-bright);
    font-size: 1.15rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(-50%);
    box-shadow: 0 14px 34px rgba(9, 17, 31, 0.14);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-nav:hover {
    transform: translateY(calc(-50% - 2px));
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 34px rgba(9, 17, 31, 0.16);
}

@media (max-width: 992px) {
    .testimonial-track {
        grid-auto-columns: calc((100% - 16px) / 2);
    }
}

@media (max-width: 640px) {
    .testimonial-carousel {
        padding: 0;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-track {
        grid-auto-columns: 86%;
        padding-bottom: 10px;
    }

    .testimonial-card {
        min-height: 240px;
        padding: 22px;
    }

    .testimonial-card p {
        font-size: 1.08rem;
    }
}

/* Correção fina do bloco de preço após a nota promocional */
.hero-pricing {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 8px 14px;
}

.pricing-strike,
.pricing-now,
.pricing-tag {
    white-space: nowrap;
}

.pricing-note {
    grid-column: 1 / -1;
    max-width: 360px;
}

@media (max-width: 640px) {
    .hero-pricing {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 8px 12px;
    }

    .pricing-now {
        font-size: 2rem;
    }

    .pricing-tag {
        grid-column: 2;
    }

    .pricing-note {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* ===================================
   V4 Conversion Upgrade
   =================================== */

:root {
    --navy: #172742;
    --navy-deep: #09111F;
    --navy-mid: #16223A;
    --gold: #C99A3E;
    --gold-bright: #F0D073;
    --gold-deep: #7E6428;
    --cream: #F7F0E4;
    --cream-soft: #F4EFE6;
    --paper: #FCFAF5;
    --ink: #15171A;
    --ink-soft: #4B5058;
    --accent: #8F2F3F;
    --sage: #DCE7D7;
    --line: rgba(9, 17, 31, 0.12);
}

html {
    scroll-padding-top: 24px;
}

body {
    background:
        linear-gradient(90deg, rgba(9, 17, 31, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, var(--paper), #F6F1E8);
    background-size: 72px 72px, auto;
}

.hero-title,
.section-title,
.statement-text,
.author-name,
.mockup-headline,
.row-title {
    letter-spacing: 0;
}

.section-title {
    font-size: 3.75rem;
}

.mockup-headline {
    font-size: 3.4rem;
}

.statement-text {
    font-size: 4.7rem;
}

.author-name {
    font-size: 4.1rem;
}

.sticky-conversion {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 80;
    width: min(720px, calc(100% - 32px));
    pointer-events: none;
}

.sticky-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 10px 10px 10px 18px;
    background: rgba(9, 17, 31, 0.92);
    color: var(--cream);
    border: 1px solid rgba(240, 208, 115, 0.32);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(9, 17, 31, 0.32);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.sticky-title {
    font-weight: 800;
    font-size: 0.92rem;
}

.sticky-price {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    color: var(--gold-bright);
}

.sticky-btn,
.nav-link,
.author-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.84rem;
    font-weight: 800;
    transition: var(--transition);
}

.sticky-btn:hover,
.nav-link:hover,
.author-link:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

.hero {
    min-height: 90vh;
    background:
        linear-gradient(120deg, rgba(143, 47, 63, 0.26) 0%, rgba(143, 47, 63, 0) 36%),
        linear-gradient(145deg, #09111F 0%, #111C31 46%, #18243C 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 240, 228, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(247, 240, 228, 0.04) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    pointer-events: none;
    z-index: 1;
}

.top-nav {
    justify-content: space-between;
    width: min(1200px, calc(100% - 64px));
    padding: 0 0 22px;
}

.nav-meta {
    color: rgba(247, 240, 228, 0.72);
}

.hero-container {
    padding-top: 42px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 58px;
}

.hero-tag {
    margin-bottom: 22px;
}

.tag-badge {
    background: var(--accent);
    color: #fff;
}

.tag-line {
    color: rgba(247, 240, 228, 0.76);
}

.hero-title {
    font-size: 5rem;
    line-height: 0.96;
    margin-bottom: 18px;
}

.hero-title .italic {
    color: var(--gold-bright);
}

.hero-kicker {
    max-width: 590px;
    margin-bottom: 14px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.34rem;
    line-height: 1.34;
    color: var(--cream);
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 28px;
    color: rgba(247, 240, 228, 0.78);
}

.hero-action {
    margin-bottom: 24px;
}

.btn-magnetic {
    min-height: 58px;
    border-radius: 8px;
    padding: 0 30px;
    box-shadow: 0 12px 34px rgba(201, 154, 62, 0.28);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 680px;
}

.hero-proof span {
    padding: 8px 11px;
    border: 1px solid rgba(247, 240, 228, 0.16);
    border-radius: 6px;
    background: rgba(247, 240, 228, 0.055);
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.cover-stage {
    padding: 24px;
    border: 1px solid rgba(240, 208, 115, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.09), rgba(247, 240, 228, 0.02));
    transform: scale(1.08);
    transform-origin: center right;
}

.cover-img {
    max-height: 650px;
    border-radius: 6px;
}

.cover-sticker {
    border-radius: 8px;
    animation: none;
    transform: rotate(6deg);
    background: var(--accent);
    color: #fff;
}

.cover-tag {
    border-radius: 8px;
    background: var(--sage);
    color: var(--navy-deep);
}

.hero-marquee {
    margin-top: 34px;
    transform: none;
    background: var(--gold-bright);
}

.trust-strip {
    padding: 26px 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(240, 208, 115, 0.22);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(247, 240, 228, 0.12);
    border: 1px solid rgba(247, 240, 228, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.trust-item {
    padding: 22px 24px;
    background: rgba(247, 240, 228, 0.045);
}

.trust-item strong {
    display: block;
    margin-bottom: 5px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.28rem;
    color: var(--gold-bright);
}

.trust-item span {
    color: rgba(247, 240, 228, 0.72);
    font-size: 0.9rem;
}

.testimonials {
    padding: 70px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 54px;
    align-items: center;
}

.stars {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 0.12em;
}

.testimonials-copy h2 {
    max-width: 540px;
    margin-bottom: 14px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.6rem;
    line-height: 1.02;
    color: var(--navy-deep);
}

.testimonials-copy p {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-metrics span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    background: var(--paper);
}

.testimonial-wall {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 16px;
    align-items: center;
}

.testimonial-shot {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(9, 17, 31, 0.1);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(9, 17, 31, 0.12);
}

.testimonial-shot.featured {
    grid-row: span 2;
}

.testimonial-shot img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.testimonial-shot:nth-child(2) {
    transform: rotate(1.5deg);
}

.testimonial-shot:nth-child(3) {
    transform: rotate(-1deg);
}

.testimonial-shot:nth-child(4) {
    grid-column: 2;
    transform: rotate(0.8deg);
}

.editorial {
    padding: 110px 0;
}

.editorial-grid {
    max-width: 1020px;
}

.quote-mark {
    color: var(--accent);
}

.method {
    padding: 110px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.method-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: center;
}

.method-copy p {
    margin-top: 26px;
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.78;
}

.method-steps {
    display: grid;
    gap: 12px;
}

.method-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(9, 17, 31, 0.06);
}

.method-step span {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    color: var(--accent);
}

.method-step strong {
    color: var(--navy-deep);
    line-height: 1.35;
}

.chapters,
.author,
.faq {
    background: #F7F3EA;
}

.chapter-card,
.audience-row,
.statement-card,
.card-right,
.value-item {
    border-radius: 8px;
}

.chapter-card {
    box-shadow: 0 14px 36px rgba(9, 17, 31, 0.055);
}

.chapter-card.gold-card {
    background: linear-gradient(135deg, var(--gold-bright), var(--sage));
}

.mockup-bg img {
    filter: brightness(0.42) saturate(0.92);
}

.mockup-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 17, 31, 0.82), rgba(9, 17, 31, 0.28) 58%, rgba(9, 17, 31, 0.08));
    z-index: 1;
    pointer-events: none;
}

.audience {
    padding: 92px 0;
    background:
        linear-gradient(180deg, #09111F, #111D31);
}

.audience::before,
.statement-card::before {
    display: none;
}

.row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(240, 208, 115, 0.36);
    border-radius: 8px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold-bright);
    background: rgba(247, 240, 228, 0.04);
    filter: none;
}

.audience-row:hover .row-icon {
    transform: none;
    background: var(--gold-bright);
    color: var(--navy-deep);
}

.row-title {
    font-size: 4.05rem;
}

.audience .section-head {
    margin-bottom: 44px;
}

.audience-row {
    padding: 32px 28px;
}

.author-link {
    margin-top: 14px;
}

.value-stack {
    padding: 120px 0;
    background: var(--paper);
}

.value-header {
    max-width: 850px;
    margin-bottom: 52px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-item {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 42px rgba(9, 17, 31, 0.06);
}

.value-item span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.value-item h3 {
    margin-bottom: 12px;
    font-family: 'Fraunces', Georgia, serif;
    color: var(--navy-deep);
    font-size: 1.38rem;
    line-height: 1.16;
}

.value-item p {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.statement {
    background:
        linear-gradient(180deg, #FCFAF5 0%, #EFE7D8 100%);
}

.statement-text {
    max-width: 1080px;
}

.statement-card {
    background:
        linear-gradient(135deg, #09111F 0%, #111C31 60%, #321925 100%);
}

.card-list li::before {
    content: '+';
    color: var(--gold-bright);
}

.offer-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(143, 47, 63, 0.24);
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-note {
    margin-top: 18px;
    color: rgba(247, 240, 228, 0.62);
    font-size: 0.84rem;
    line-height: 1.55;
}

.footer-copy span {
    color: rgba(247, 240, 228, 0.42);
}

@media (max-width: 992px) {
    .top-nav {
        width: min(100% - 40px, 1200px);
        gap: 16px;
    }

    .nav-link {
        display: none;
    }

    .hero-grid,
    .method-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-proof {
        justify-content: center;
        margin: 0 auto;
    }

    .trust-grid,
    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-wall {
        max-width: 760px;
        margin: 0 auto;
    }

    .cover-stage {
        transform: none;
        transform-origin: center;
    }

    .row-title {
        font-size: 3rem;
    }

    .section-title,
    .testimonials-copy h2,
    .mockup-headline,
    .statement-text {
        font-size: 3.1rem;
    }

    .author-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 84px;
    }

    .sticky-conversion {
        bottom: 10px;
        width: calc(100% - 20px);
    }

    .sticky-inner {
        grid-template-columns: 1fr auto;
        padding: 10px;
    }

    .sticky-title {
        display: none;
    }

    .sticky-btn {
        min-width: 142px;
    }

    .top-nav {
        justify-content: center;
    }

    .nav-brand {
        display: none;
    }

    .hero-title {
        font-size: 3.15rem;
    }

    .section-title,
    .testimonials-copy h2,
    .mockup-headline,
    .statement-text,
    .author-name {
        font-size: 2.45rem;
    }

    .hero-kicker {
        font-size: 1.18rem;
    }

    .hero-proof {
        display: none;
    }

    .trust-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 56px 0;
    }

    .testimonial-wall {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-shot,
    .testimonial-shot:nth-child(2),
    .testimonial-shot:nth-child(3),
    .testimonial-shot:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .audience {
        padding: 72px 0;
    }

    .audience-row {
        padding: 26px 14px;
    }

    .method-step {
        grid-template-columns: 42px 1fr;
        padding: 16px;
    }

    .cover-stage {
        padding: 12px;
    }

    .row-icon {
        width: 46px;
        height: 46px;
    }

    .value-stack {
        padding: 80px 0;
    }
}

/* ===================================
   V5 — Profundidade, Editorial & Risco Zero
   =================================== */

/* ----- 1. HERO COVER — Profundidade real ----- */
.cover-stage {
    position: relative;
    isolation: isolate;
}

.cover-ambient {
    position: absolute;
    inset: -60px -40px -40px -40px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(240, 208, 115, 0.22), transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(143, 47, 63, 0.20), transparent 55%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.cover-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(240, 208, 115, 0.35), transparent 65%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.cover-wrap {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    perspective: 1400px;
}

.cover-img {
    position: relative;
    z-index: 3;
    border-radius: 6px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 rgba(0, 0, 0, 0.4) inset,
        -2px 0 0 rgba(0, 0, 0, 0.3) inset,
        0 6px 14px rgba(0, 0, 0, 0.35),
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 80px 120px rgba(9, 17, 31, 0.5);
    transform: rotateY(-9deg) rotateX(3deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: bookFloat 7s ease-in-out infinite;
}

@keyframes bookFloat {
    0%, 100% { transform: rotateY(-9deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-9deg) rotateX(3deg) translateY(-14px); }
}

.cover-stage:hover .cover-img {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.03);
}

/* Lombada do livro */
.cover-spine {
    position: absolute;
    top: 1.5%;
    left: -2px;
    width: 12px;
    height: 97%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(255, 255, 255, 0.08) 75%,
        rgba(0, 0, 0, 0.35) 100%
    );
    border-radius: 2px 0 0 2px;
    transform: rotateY(-9deg) translateX(-6px);
    transform-origin: right center;
    z-index: 2;
    pointer-events: none;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
}

/* Brilho/gloss diagonal */
.cover-gloss {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    border-radius: 6px;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.12) 48%,
        rgba(255, 255, 255, 0.04) 55%,
        transparent 62%,
        transparent 100%
    );
    mix-blend-mode: overlay;
    transform: rotateY(-9deg) rotateX(3deg);
    animation: glossSweep 7s ease-in-out infinite;
}

@keyframes glossSweep {
    0%, 100% { opacity: 0.6; transform: rotateY(-9deg) rotateX(3deg) translateX(0); }
    50% { opacity: 1; transform: rotateY(-9deg) rotateX(3deg) translateX(8px); }
}

/* Reflexo leve no chão */
.cover-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 650px;
    margin-top: 6px;
    transform: scaleY(-1) rotateY(-9deg) rotateX(3deg);
    transform-origin: top center;
    opacity: 0.18;
    filter: blur(2px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 35%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
    border-radius: 6px;
}

/* Sombra ambiente sob o livro — bem mais densa */
.cover-shadow {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 44px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15) 55%, transparent 80%);
    filter: blur(22px);
    z-index: 0;
    animation: shadowBreath 7s ease-in-out infinite;
}

@keyframes shadowBreath {
    0%, 100% { width: 82%; opacity: 1; }
    50% { width: 70%; opacity: 0.75; }
}

/* ----- 2. CHAPTERS — Micro benefícios ----- */
.chapter-benefits {
    list-style: none;
    margin: 22px 0 0 0;
    padding: 18px 0 0 0;
    border-top: 1px solid rgba(9, 17, 31, 0.1);
    display: grid;
    gap: 9px;
}

.chapter-benefits li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-soft);
    font-weight: 500;
}

.chapter-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
    border-radius: 1px;
}

.chapter-benefits.dark-list {
    border-top-color: rgba(247, 240, 228, 0.15);
}

.chapter-benefits.dark-list li {
    color: rgba(247, 240, 228, 0.78);
}

.chapter-benefits.dark-list li::before {
    border-color: var(--gold-bright);
}

.chapter-benefits.gold-list {
    border-top-color: rgba(9, 17, 31, 0.22);
}

.chapter-benefits.gold-list li {
    color: var(--navy-deep);
    font-weight: 600;
}

.chapter-benefits.gold-list li::before {
    border-color: var(--navy-deep);
}

/* ----- 3. AUTHOR — Editorial premium ----- */
.editorial-author {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 110px;
    padding: 40px 0;
    align-items: center;
}

.author .container {
    max-width: 1100px;
}

.editorial-author .author-portrait img {
    border-radius: 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 30px 80px rgba(9, 17, 31, 0.28),
        0 60px 120px rgba(9, 17, 31, 0.15);
    filter: contrast(1.03) saturate(1.02);
}

.editorial-author .portrait-frame {
    inset: -28px;
    border-width: 1px;
    border-color: var(--gold);
    transform: translate(28px, 28px);
    border-radius: 4px;
}

/* Selo editorial premium */
.portrait-seal {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 138px;
    height: 138px;
    background: var(--navy-deep);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: var(--gold-bright);
    text-align: center;
    box-shadow:
        0 0 0 6px var(--cream-soft),
        0 20px 50px rgba(9, 17, 31, 0.35);
    transform: rotate(-6deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-author:hover .portrait-seal {
    transform: rotate(0deg) scale(1.04);
}

.seal-top {
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    padding: 0 14px;
    line-height: 1.2;
}

.seal-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 8px 0;
}

.seal-bottom {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold-bright);
    line-height: 1;
}

.editorial-author .author-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 28px;
}

.editorial-author .author-name {
    margin-bottom: 36px;
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    line-height: 0.92;
}

.author-pull {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.55rem;
    line-height: 1.42;
    color: var(--navy-deep);
    margin: 0 0 32px 0;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    max-width: 560px;
}

.editorial-author .author-bio {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Assinatura escrita à mão */
.author-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
    max-width: 360px;
}

.sig-name {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.65rem;
    color: var(--navy-deep);
    line-height: 1;
    letter-spacing: -0.01em;
}

.sig-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ----- 4. RISCO ZERO ----- */
.risk-zero {
    position: relative;
    margin-top: 56px;
    padding: 56px 48px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 24px 64px rgba(9, 17, 31, 0.08),
        0 60px 120px rgba(9, 17, 31, 0.04);
    z-index: 2;
}

.risk-zero::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold-bright));
    border-radius: 0 0 3px 3px;
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(143, 47, 63, 0.25);
    flex-shrink: 0;
}

.risk-badge::before {
    content: '✓';
    font-size: 0.9rem;
    letter-spacing: 0;
}

.risk-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    flex: 1;
    min-width: 280px;
}

.risk-title .italic {
    font-weight: 400;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.risk-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.risk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--paper), var(--cream-soft));
    border: 1px solid var(--gold);
    color: var(--accent);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 6px 16px rgba(201, 154, 62, 0.18);
    transition: var(--transition);
}

.risk-item:hover .risk-icon {
    transform: translateY(-3px) rotate(-4deg);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 10px 24px rgba(201, 154, 62, 0.3);
}

.risk-icon svg {
    width: 22px;
    height: 22px;
}

.risk-item strong {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy-deep);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.risk-item span {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ----- 5. FAQ — Hover, ícones, profundidade ----- */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.faq-item {
    border-bottom: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 2px 4px rgba(9, 17, 31, 0.02);
}

.faq-item:hover {
    border-color: rgba(201, 154, 62, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 16px 40px rgba(9, 17, 31, 0.08),
        0 4px 12px rgba(201, 154, 62, 0.08);
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 20px 50px rgba(9, 17, 31, 0.1),
        0 6px 16px rgba(201, 154, 62, 0.12);
}

.faq-item summary {
    padding: 22px 26px;
    grid-template-columns: 36px 36px 1fr 32px;
    gap: 18px;
    transition: background 0.3s ease;
}

.faq-item:hover summary {
    padding-left: 26px;
    background: linear-gradient(90deg, rgba(240, 208, 115, 0.04), transparent 70%);
}

.faq-item[open] summary {
    background: linear-gradient(90deg, rgba(240, 208, 115, 0.08), transparent 80%);
    border-bottom: 1px solid var(--line);
}

.faq-q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    color: var(--accent);
    transition: var(--transition);
}

.faq-item:hover .faq-q-icon,
.faq-item[open] .faq-q-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
    transform: scale(1.05);
}

.faq-q-icon svg {
    width: 18px;
    height: 18px;
}

.faq-item summary::after {
    display: none;
}

.faq-q-toggle {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    transition: var(--transition);
    flex-shrink: 0;
    justify-self: end;
}

.faq-q-toggle::before,
.faq-q-toggle::after {
    content: '';
    position: absolute;
    background: var(--navy-deep);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: var(--transition);
}

.faq-q-toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-q-toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-item:hover .faq-q-toggle {
    background: var(--gold-bright);
    border-color: var(--gold);
}

.faq-item[open] .faq-q-toggle {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    transform: rotate(45deg);
}

.faq-item[open] .faq-q-toggle::before,
.faq-item[open] .faq-q-toggle::after {
    background: var(--gold-bright);
}

.faq-q-num {
    color: var(--accent);
    font-size: 1rem;
}

.faq-q-text {
    font-size: 1.1rem;
}

.faq-item p {
    padding: 22px 26px 26px 104px;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.3), transparent);
    margin: 0;
}

/* ===== Responsive V5 ===== */
@media (max-width: 992px) {
    .editorial-author {
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .editorial-author .portrait-frame {
        display: none;
    }

    .portrait-seal {
        width: 110px;
        height: 110px;
        right: 12px;
        bottom: -22px;
    }

    .author-pull {
        font-size: 1.3rem;
    }

    .risk-zero {
        padding: 40px 32px;
    }

    .risk-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cover-reflection {
        display: none;
    }
}

@media (max-width: 640px) {
    .risk-zero {
        padding: 32px 22px;
        margin-top: 40px;
    }

    .risk-header {
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .risk-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portrait-seal {
        width: 92px;
        height: 92px;
        right: 8px;
        bottom: -18px;
    }

    .seal-top {
        font-size: 0.52rem;
        letter-spacing: 1.5px;
        padding: 0 8px;
    }

    .seal-bottom {
        font-size: 0.78rem;
    }

    .author-pull {
        font-size: 1.15rem;
        padding-left: 16px;
    }

    .sig-name {
        font-size: 1.4rem;
    }

    .faq-item summary {
        grid-template-columns: 32px 28px 1fr 26px;
        gap: 12px;
        padding: 18px 18px;
    }

    .faq-q-icon {
        width: 32px;
        height: 32px;
    }

    .faq-q-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-item p {
        padding: 18px 18px 22px 78px;
    }

    .chapter-benefits li {
        font-size: 0.85rem;
    }

    .cover-shadow {
        width: 70%;
    }
}

/* =========================================================
   V5 PASS 2 — Iteração de conversão
   ========================================================= */

/* ----- Sticky bar refinada ----- */
.sticky-inner {
    grid-template-columns: 1fr auto auto;
}

.sticky-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.st-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-bright);
    animation: pulse 2s ease-in-out infinite;
}

.sticky-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.sticky-price s {
    color: rgba(247, 240, 228, 0.45);
    font-size: 0.78rem;
    font-weight: 600;
}

.sticky-price strong {
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 1.05rem;
    font-family: 'Fraunces', Georgia, serif;
}

/* ----- 1. Top nav com mais contraste ----- */
.top-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 14px 22px;
    background: rgba(9, 17, 31, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 208, 115, 0.22);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 18px 40px rgba(0, 0, 0, 0.35);
    margin-top: 18px;
    width: min(1200px, calc(100% - 48px));
}

.nav-brand {
    align-items: center;
    gap: 6px;
}

.nav-brand .brand-mark {
    font-size: 1.45rem;
}

.nav-brand .brand-text {
    font-size: 1rem;
}

.nav-center {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav-anchor {
    position: relative;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(247, 240, 228, 0.7);
    padding: 6px 2px;
    transition: var(--transition);
}

.nav-anchor::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-anchor:hover,
.nav-anchor.active {
    color: var(--gold-bright);
}

.nav-anchor:hover::after,
.nav-anchor.active::after {
    transform: scaleX(1);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(201, 154, 62, 0.25);
}

.nav-link:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 154, 62, 0.4);
}

.nav-arrow {
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover .nav-arrow {
    transform: translateX(3px);
}

/* ----- 2. Side rail (mini menu lateral) ----- */
.side-rail {
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 8px;
    background: rgba(9, 17, 31, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 208, 115, 0.2);
    border-radius: 40px;
}

.rail-dot {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(247, 240, 228, 0.25);
    transition: var(--transition);
}

.rail-dot:hover,
.rail-dot.active {
    background: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-bright);
}

.rail-dot::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 12px;
    background: var(--navy-deep);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(240, 208, 115, 0.3);
}

.rail-dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* ----- 3. Hero — kicker mais cortante + scroll indicator ----- */
.hero-kicker {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.28;
    color: var(--cream);
    max-width: 560px;
    margin-bottom: 14px;
}

.kicker-strong {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 600;
}

.hero-lead {
    max-width: 480px;
    margin-bottom: 28px;
    font-size: 1.06rem;
    line-height: 1.55;
}

.hero-scroll {
    position: relative;
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 26px auto 18px;
    color: rgba(247, 240, 228, 0.65);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.hero-scroll:hover {
    color: var(--gold-bright);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(240, 208, 115, 0.35);
    border-radius: 50%;
    background: rgba(247, 240, 228, 0.04);
    animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); border-color: rgba(240, 208, 115, 0.35); }
    50% { transform: translateY(6px); border-color: var(--gold-bright); }
}

.hero-scroll:hover .scroll-arrow {
    border-color: var(--gold-bright);
    background: rgba(240, 208, 115, 0.1);
}

/* ----- 4. Testimonials — Prova social real ----- */
.testimonials {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #FAF6EE 100%);
    border-bottom: 1px solid var(--line);
}

.testimonials-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.th-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.testimonials-head h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    max-width: 540px;
}

.th-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-number {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    font-size: 3.4rem;
    color: var(--navy-deep);
    line-height: 0.85;
    letter-spacing: -0.03em;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
}

.rating-label {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.testimonial-wall-v2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.ts-shot {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(9, 17, 31, 0.08);
    box-shadow:
        0 2px 4px rgba(9, 17, 31, 0.04),
        0 16px 40px rgba(9, 17, 31, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.ts-shot:hover {
    transform: translateY(-4px) rotate(0deg) !important;
    box-shadow:
        0 4px 8px rgba(9, 17, 31, 0.06),
        0 30px 60px rgba(9, 17, 31, 0.16);
    z-index: 3;
}

.ts-shot img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Mosaico assimétrico — 5 fotos */
.ts-1 { grid-column: span 5; grid-row: span 2; transform: rotate(-1deg); }
.ts-2 { grid-column: span 4; transform: rotate(0.8deg); }
.ts-3 { grid-column: span 3; transform: rotate(-0.5deg); }
.ts-4 { grid-column: span 4; transform: rotate(0.5deg); }
.ts-5 { grid-column: span 3; transform: rotate(-0.8deg); }

.ts-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(9, 17, 31, 0.86);
    backdrop-filter: blur(6px);
    color: var(--cream);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid rgba(240, 208, 115, 0.3);
}

.ts-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D058;
    box-shadow: 0 0 8px #34D058;
}

.testimonials-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding: 16px 20px;
    background: rgba(247, 240, 228, 0.5);
    border: 1px dashed var(--line);
    border-radius: 10px;
}

.tf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
}

.tf-icon svg {
    width: 20px;
    height: 20px;
}

.testimonials-footer p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* ----- 5. Chapters — Novo layout (3+2+1) ----- */
.chapters-grid.v5-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: auto;
    gap: 20px;
}

.chapter-card.row-1-a { grid-column: 1 / 2; }
.chapter-card.row-1-b { grid-column: 2 / 3; }
.chapter-card.row-2-a { grid-column: 1 / 2; grid-row: 2; }
.chapter-card.row-2-b { grid-column: 2 / 3; grid-row: 2; }
.chapter-card.row-3-full { grid-column: 1 / -1; grid-row: 3; }

.chapter-card {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    transition: var(--transition);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 14px 36px rgba(9, 17, 31, 0.06);
}

.chapter-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 24px 60px rgba(9, 17, 31, 0.12);
    border-color: rgba(201, 154, 62, 0.4);
}

.chapter-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.chapter-num {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.85;
    margin: 0;
}

.chapter-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.chapter-pill.alt {
    background: var(--cream-soft);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.chapter-pill.dark {
    background: var(--navy-deep);
    color: var(--gold-bright);
    border: 1px solid var(--gold);
}

.chapter-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.chapter-card.large h3 {
    font-size: 1.85rem;
}

.chapter-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.chapter-card.dark {
    background: linear-gradient(135deg, #0E1A2E 0%, #1A2840 100%);
    color: var(--cream);
    border-color: transparent;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 24px 60px rgba(9, 17, 31, 0.25);
}

.chapter-card.dark .chapter-num { color: var(--gold-bright); }
.chapter-card.dark h3 { color: var(--cream); }
.chapter-card.dark p { color: rgba(247, 240, 228, 0.78); }

.chapter-card.gold-card {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(201, 154, 62, 0.3);
}

.chapter-card.gold-card .chapter-num,
.chapter-card.gold-card h3,
.chapter-card.gold-card p {
    color: var(--navy-deep);
}

/* Row 3 — capítulo destaque */
.row-3-full {
    padding: 0 !important;
}

.row-3-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    padding: 48px 48px;
    align-items: center;
}

.row-3-left h3 {
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.row-3-left p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--navy-deep);
    opacity: 0.85;
    max-width: 480px;
}

.row-3-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chapter-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    padding: 16px 28px;
    background: var(--navy-deep);
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 28px rgba(9, 17, 31, 0.25);
}

.chapter-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(9, 17, 31, 0.35);
}

.chapter-cta-btn .btn-arrow {
    transition: var(--transition);
}

.chapter-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.chapter-card.row-1-a .chapter-num,
.chapter-card.row-3-full .chapter-num {
    font-size: 2.6rem;
}

.chapter-tags {
    margin-top: auto;
    padding-top: 20px;
}

/* ----- 6. Mockup section — Profundidade real ----- */
.v5-mockup {
    min-height: 600px;
    padding: 0;
    background: var(--navy-deep);
}

.v5-mockup .mockup-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v5-mockup .mockup-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28) saturate(1.1) blur(2px);
    opacity: 0.7;
}

.mockup-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 55%, rgba(201, 154, 62, 0.15), transparent 50%),
        linear-gradient(90deg, rgba(9, 17, 31, 0.92) 0%, rgba(9, 17, 31, 0.4) 50%, rgba(9, 17, 31, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.v5-mockup .mockup-overlay {
    position: relative;
    z-index: 3;
    padding: 100px 0;
}

.v5-mockup .mockup-overlay::after {
    display: none;
}

.mockup-section::after {
    display: none !important;
}

.mockup-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.mockup-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ml-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34D058;
    box-shadow: 0 0 12px #34D058;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-sub {
    margin: -16px 0 32px;
    font-size: 1.05rem;
    color: rgba(247, 240, 228, 0.72);
    line-height: 1.6;
    max-width: 480px;
}

/* Cena 3D do mockup */
.mockup-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    perspective: 1500px;
}

.ms-ambient {
    position: absolute;
    width: 80%;
    height: 80%;
    background:
        radial-gradient(ellipse at center, rgba(240, 208, 115, 0.3), transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(143, 47, 63, 0.25), transparent 55%);
    filter: blur(40px);
    z-index: 0;
    animation: ambientPulse 8s ease-in-out infinite;
}

.ms-floor {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2) 55%, transparent 80%);
    filter: blur(28px);
    z-index: 1;
    animation: shadowBreath 7s ease-in-out infinite;
}

.ms-book {
    position: relative;
    transform-style: preserve-3d;
    z-index: 2;
    animation: bookFloat 7s ease-in-out infinite;
}

@keyframes bookFloat {
    0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(4deg) translateY(-16px); }
}

.ms-cover {
    position: relative;
    max-height: 460px;
    width: auto;
    border-radius: 6px;
    z-index: 2;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        -2px 0 0 rgba(0, 0, 0, 0.3) inset,
        0 -1px 0 rgba(0, 0, 0, 0.5) inset,
        0 8px 18px rgba(0, 0, 0, 0.4),
        0 24px 50px rgba(0, 0, 0, 0.5),
        0 60px 100px rgba(0, 0, 0, 0.55),
        0 100px 160px rgba(9, 17, 31, 0.55);
}

.ms-spine {
    position: absolute;
    top: 1.5%;
    left: -3px;
    width: 14px;
    height: 97%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(255, 255, 255, 0.08) 75%,
        rgba(0, 0, 0, 0.4) 100%
    );
    border-radius: 2px 0 0 2px;
    transform: translateX(-8px);
    z-index: 1;
    box-shadow: -3px 0 8px rgba(0, 0, 0, 0.4);
}

.ms-gloss {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 6px;
    pointer-events: none;
    background: linear-gradient(
        118deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.16) 48%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 62%,
        transparent 100%
    );
    mix-blend-mode: overlay;
    animation: glossSweep 7s ease-in-out infinite;
}

.ms-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 460px;
    margin-top: 8px;
    transform: scaleY(-1);
    transform-origin: top center;
    opacity: 0.22;
    filter: blur(2px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 40%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    border-radius: 6px;
}

/* ----- 7. Escassez/oferta refinada ----- */
.offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 22px;
}

.offer-badge.primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(143, 47, 63, 0.35);
}

.ob-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    animation: pulse 2s ease-in-out infinite;
}

.offer-badge.ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--gold-bright);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(240, 208, 115, 0.4);
}

.scarcity-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(247, 240, 228, 0.15);
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(247, 240, 228, 0.78);
    line-height: 1.4;
    text-align: left;
}

.sb-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-bright);
    flex-shrink: 0;
}

/* ===== Responsive V5 Pass 2 ===== */
@media (max-width: 1100px) {
    .nav-center {
        gap: 18px;
    }

    .nav-anchor {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .top-nav {
        grid-template-columns: auto auto;
        gap: 16px;
        padding: 12px 16px;
    }

    .nav-center {
        display: none;
    }

    .side-rail {
        display: none;
    }

    .testimonials-head {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: flex-start;
    }

    .th-right {
        align-items: flex-start;
    }

    .testimonial-wall-v2 {
        grid-template-columns: repeat(6, 1fr);
    }

    .ts-1 { grid-column: span 6; grid-row: auto; }
    .ts-2, .ts-3, .ts-4, .ts-5 { grid-column: span 3; }

    .chapters-grid.v5-grid {
        grid-template-columns: 1fr;
    }

    .chapter-card.row-1-a,
    .chapter-card.row-1-b,
    .chapter-card.row-2-a,
    .chapter-card.row-2-b,
    .chapter-card.row-3-full {
        grid-column: 1;
        grid-row: auto;
    }

    .row-3-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 32px;
    }

    .mockup-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .mockup-text {
        max-width: 560px;
        margin: 0 auto;
    }

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

    .mockup-stage {
        min-height: 380px;
    }

    .ms-cover {
        max-height: 380px;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 88px;
    }

    .top-nav {
        margin-top: 12px;
        padding: 10px 12px;
        width: calc(100% - 24px);
    }

    .nav-link {
        padding: 0 12px;
        font-size: 0.72rem;
        min-height: 38px;
    }

    .nav-link span:first-child {
        display: inline;
    }

    .nav-arrow {
        display: none;
    }

    .hero-kicker {
        font-size: 1.15rem;
    }

    .hero-lead {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-proof {
        display: none;
    }

    .hero-scroll {
        font-size: 0.62rem;
        margin: 18px auto 8px;
    }

    .testimonials {
        padding: 56px 0;
    }

    .testimonials-head {
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .rating-number {
        font-size: 2.6rem;
    }

    .testimonial-wall-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ts-1, .ts-2, .ts-3, .ts-4, .ts-5 {
        grid-column: span 1;
        grid-row: auto;
        transform: none;
    }

    .ts-1 {
        grid-column: span 2;
    }

    .ts-badge {
        font-size: 0.55rem;
        padding: 4px 7px;
    }

    .testimonials-footer p {
        font-size: 0.78rem;
    }

    .chapter-card {
        padding: 28px 22px;
    }

    .chapter-card h3,
    .chapter-card.large h3 {
        font-size: 1.3rem;
    }

    .row-3-inner {
        padding: 28px 22px;
        gap: 24px;
    }

    .row-3-left h3 {
        font-size: 1.5rem;
    }

    .chapter-cta-btn {
        width: 100%;
        text-align: center;
    }

    .v5-mockup .mockup-overlay {
        padding: 64px 0;
    }

    .mockup-stage {
        min-height: 300px;
    }

    .ms-cover {
        max-height: 280px;
    }

    .ms-reflection {
        display: none;
    }

    .offer-badge.primary,
    .offer-badge.ghost {
        font-size: 0.62rem;
        padding: 6px 10px;
    }

    .sb-item {
        font-size: 0.76rem;
    }

    .sticky-price s {
        display: none;
    }
}

/* =========================================================
   V5 PASS 3 FINAL — Ajustes solicitados de conversão
   ========================================================= */

.hero-title,
.section-title,
.statement-text,
.testimonials-head h2,
.author-name,
.risk-title {
    letter-spacing: 0;
}

.section-title,
.statement-text {
    line-height: 1.03;
}

.hero-kicker {
    margin-bottom: 12px;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 14px;
    font-size: 1.08rem;
    line-height: 1.58;
}

.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 8px 12px;
    border: 1px solid rgba(240, 208, 115, 0.25);
    border-radius: 8px;
    background: rgba(247, 240, 228, 0.055);
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-social-proof strong,
.hsp-stars {
    color: var(--gold-bright);
}

.hsp-stars {
    letter-spacing: 0.08em;
}

.pricing-note {
    flex-basis: 100%;
    color: rgba(247, 240, 228, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-proof {
    max-width: 640px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.hero-proof span {
    position: relative;
    padding: 9px 13px 9px 34px;
    color: rgba(247, 240, 228, 0.86);
}

.hero-proof span::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    width: 11px;
    height: 7px;
    border-left: 2px solid var(--gold-bright);
    border-bottom: 2px solid var(--gold-bright);
    transform: translateY(-62%) rotate(-45deg);
}

.cover-stage {
    transform: scale(1.1);
    transform-origin: center right;
}

.cover-ambient {
    inset: -76px -58px -54px -58px;
    background:
        radial-gradient(ellipse at 32% 44%, rgba(240, 208, 115, 0.24), transparent 56%),
        radial-gradient(ellipse at 70% 70%, rgba(143, 47, 63, 0.18), transparent 55%),
        radial-gradient(ellipse at 55% 45%, rgba(59, 130, 246, 0.14), transparent 62%);
}

.cover-glow {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.14), rgba(240, 208, 115, 0.18) 38%, transparent 70%);
    filter: blur(58px);
}

.cover-img {
    max-height: 715px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 rgba(0, 0, 0, 0.42) inset,
        -2px 0 0 rgba(0, 0, 0, 0.3) inset,
        0 10px 24px rgba(0, 0, 0, 0.42),
        0 28px 70px rgba(0, 0, 0, 0.52),
        0 70px 130px rgba(9, 17, 31, 0.58),
        0 0 72px rgba(96, 165, 250, 0.12);
}

.cover-shadow {
    width: 90%;
    height: 54px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.78), rgba(9, 17, 31, 0.3) 58%, transparent 82%);
}

.testimonials-intro {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ts-shot {
    overflow: visible;
}

.ts-shot img {
    border-radius: 12px;
}

.ts-badge {
    text-transform: none;
    letter-spacing: 0;
}

.ts-quote {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    background: rgba(9, 17, 31, 0.9);
    border: 1px solid rgba(240, 208, 115, 0.26);
    border-radius: 8px;
    color: var(--cream);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.28;
    box-shadow: 0 12px 34px rgba(9, 17, 31, 0.22);
}

.ts-quote span {
    display: block;
    margin-top: 8px;
    color: var(--gold-bright);
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.audience {
    padding: 72px 0;
}

.audience .section-head {
    margin-bottom: 34px;
}

.audience-row {
    padding: 24px 26px;
}

.row-title {
    font-size: 3.55rem;
    line-height: 0.95;
    margin-bottom: 10px;
}

.row-desc {
    line-height: 1.58;
}

.statement-card {
    margin-top: -8px;
}

.final-security {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.final-security span {
    position: relative;
    padding: 9px 9px 9px 25px;
    border: 1px solid rgba(240, 208, 115, 0.2);
    border-radius: 7px;
    background: rgba(247, 240, 228, 0.045);
    color: rgba(247, 240, 228, 0.78);
    font-size: 0.74rem;
    font-weight: 800;
    text-align: left;
}

.final-security span::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    width: 9px;
    height: 6px;
    border-left: 2px solid var(--gold-bright);
    border-bottom: 2px solid var(--gold-bright);
    transform: translateY(-62%) rotate(-45deg);
}

.faq-list {
    width: 100%;
    max-width: none;
    gap: 14px;
}

.faq-item {
    border-color: rgba(201, 154, 62, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 10px 30px rgba(9, 17, 31, 0.045);
}

.faq-item:hover {
    border-color: rgba(201, 154, 62, 0.48);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 18px 46px rgba(9, 17, 31, 0.08),
        0 0 0 1px rgba(240, 208, 115, 0.08);
}

.faq-q-text {
    line-height: 1.28;
}

@media (max-width: 992px) {
    .cover-stage {
        transform: none;
        transform-origin: center;
    }

    .cover-img {
        max-height: 580px;
    }

    .hero-social-proof {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-lead {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-social-proof {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 4px;
        width: 100%;
        margin-bottom: 18px;
    }

    .hero-proof {
        display: grid;
        margin-top: 12px;
    }

    .hero-proof span {
        font-size: 0.78rem;
        text-align: left;
    }

    .cover-img {
        max-height: 430px;
    }

    .ts-quote {
        position: static;
        margin: -8px 8px 10px;
        font-size: 0.82rem;
    }

    .audience {
        padding: 58px 0;
    }

    .audience-row {
        padding: 20px 12px;
    }

    .row-title {
        font-size: 2.35rem;
    }

    .final-security {
        grid-template-columns: 1fr;
    }

    .faq-list {
        gap: 10px;
    }
}
