/* ==========================================================================
   O MAIOR SEGREDO DOS HOMENS - Landing Page Styles
   Design System: Dark Luxury, Elegant, Feminine, Seductive
   ========================================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Colors */
    --bg-main: #0B0A0D;
    --bg-secondary: #15111A;
    --divider: #221B27;
    --text-main: #F2EDE6;
    --text-secondary: #C9BFB4;
    --accent-wine: #7A1E3A;
    --accent-wine-hover: #5a162b;
    --accent-rose: #B56B7B;
    --accent-gold: #C8A35F;
    --accent-gold-hover: #D4AF61;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow-gold: 0 0 30px rgba(200, 163, 95, 0.2);
    --shadow-glow-wine: 0 0 30px rgba(122, 30, 58, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.05rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-main);
}

.section-title.text-left {
    text-align: left;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-text-large {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-text-center {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.section-text-highlight {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-main);
}

/* Highlights */
.highlight-wine {
    color: var(--accent-rose);
    font-weight: 500;
}

.highlight-gold {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast), box-shadow var(--transition-normal), background var(--transition-normal);
    min-height: 48px;
    text-align: center;
}

.btn:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.98);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--bg-main);
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
    box-shadow: var(--shadow-glow-gold);
    transform: translateY(-2px);
}

/* Wine Button */
.btn-wine {
    background: linear-gradient(135deg, var(--accent-wine) 0%, var(--accent-rose) 100%);
    color: var(--text-main);
    border: 1px solid var(--accent-wine);
}

.btn-wine:hover {
    background: linear-gradient(135deg, var(--accent-wine-hover) 0%, var(--accent-wine) 100%);
    box-shadow: var(--shadow-glow-wine);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-link {
    color: var(--accent-rose);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--accent-wine);
}

.btn-link:focus {
    outline: 2px solid var(--accent-wine);
    outline-offset: 2px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--divider);
    padding: var(--space-md);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Top Bar */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--divider);
    padding: var(--space-xs) 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

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

/* Header - Static (Not Sticky) */
.header-static {
    position: relative;
    background: var(--bg-main);
    border-bottom: 1px solid var(--divider);
    padding: var(--space-sm) 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 130px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Hero Section */
.hero {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(122, 30, 58, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

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

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.925rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--accent-rose);
    margin-bottom: var(--space-md);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .hero-ctas {
        flex-direction: row;
        align-items: center;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

@media (min-width: 768px) {
    .trust-badges {
        justify-content: flex-start;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-badge svg {
    color: var(--accent-gold);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-height: 600px;
    width: auto;
    object-fit: contain;
}

/* Section Base */
.section {
    padding: var(--space-3xl) 0;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* Dor Section */
.section-dor {
    background: var(--bg-secondary);
}

.pain-list {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--divider);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pain-item svg {
    flex-shrink: 0;
    color: var(--accent-wine);
    margin-top: 2px;
}

.pain-closing {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-main);
    font-family: var(--font-display);
}

/* Revelação Section */
.section-revelacao {
    background: var(--bg-main);
}

.revelacao-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .revelacao-container {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
}

.revelacao-content .section-text {
    margin-bottom: var(--space-lg);
}

.emphasis-text {
    font-size: 1.125rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
}

.revelacao-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

/* O que é Section */
.section-oque {
    background: var(--bg-secondary);
    text-align: center;
}

/* Para Quem Section */
.section-para-quem {
    background: var(--bg-main);
}

.para-quem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .para-quem-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.para-quem-card {
    background: var(--bg-secondary);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.para-quem-card.is-for {
    border-color: rgba(200, 163, 95, 0.3);
}

.para-quem-card.is-not-for {
    border-color: rgba(122, 30, 58, 0.3);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-main);
}

.check-list li,
.x-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-list svg {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.x-list svg {
    flex-shrink: 0;
    color: var(--accent-wine);
    margin-top: 2px;
}

/* Método Section */
.section-metodo {
    background: var(--bg-secondary);
}

.pilares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .pilares-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pilar-card {
    background: var(--bg-main);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.pilar-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.pilar-title {
    font-size: 1.95rem;
    margin-bottom: var(--space-md);
    color: var(--text-main);
}

.pilar-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Conteúdo Section */
.section-conteudo {
    background: var(--bg-main);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background: var(--bg-secondary);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.module-card:hover {
    border-color: var(--accent-gold);
}

.module-header {
    margin-bottom: var(--space-md);
}

.module-number {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
    display: block;
}

.module-title {
    font-size: 1.625rem;
    color: var(--text-main);
}

.module-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
}

.module-lessons {
    list-style: none;
}

.module-lessons li {
    font-size: 0.975rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.module-lessons li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Muda Section */
.section-muda {
    background: var(--bg-secondary);
}

.benefits-grid {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--divider);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.benefit-item span {
    font-size: 1.0625rem;
    color: var(--text-main);
}

/* Funciona Section */
.section-funciona {
    background: var(--bg-main);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.step-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto var(--space-sm);
}

.step-item p {
    font-size: 1.075rem;
    color: var(--text-secondary);
}

.steps-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    font-family: var(--font-display);
}

/* Bonus Section */
.section-bonus {
    background: var(--bg-secondary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-lg);
    background: var(--bg-main);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    align-items: start;
}

@media (max-width: 480px) {
    .bonus-card {
        grid-template-columns: 1fr;
    }
}

.bonus-image img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bonus-title {
    font-size: 1.65rem;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.bonus-value {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.bonus-value .original {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.bonus-value .free {
    color: var(--accent-gold);
    font-weight: 500;
}

.bonus-list li {
    font-size: 0.935rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Cursos Bonus Section */
.section-cursos-bonus {
    background: var(--bg-main);
}

.cursos-bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .cursos-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cursos-bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.curso-bonus-card {
    background: var(--bg-secondary);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.curso-bonus-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.curso-bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-bonus-content {
    padding: var(--space-lg);
}

.curso-bonus-title {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.curso-bonus-value {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.curso-bonus-value .original {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.curso-bonus-value .free {
    color: var(--accent-gold);
    font-weight: 500;
}

.curso-bonus-list {
    max-height: 600px;
    overflow-y: auto;
}

.curso-bonus-list li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    padding-left: var(--space-sm);
    position: relative;
}

.curso-bonus-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Depoimentos Section */
.section-depoimentos {
    background: var(--bg-secondary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.depoimento-card {
    background: var(--bg-main);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.depoimento-card:hover {
    border-color: var(--accent-rose);
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-wine) 0%, var(--accent-rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: var(--space-md);
}

.depoimento-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Valor Section */
.section-valor {
    background: var(--bg-main);
}

.valor-breakdown {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.valor-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--divider);
}

.valor-name {
    color: var(--text-secondary);
}

.valor-price {
    color: var(--text-main);
    font-weight: 500;
}

.valor-total {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0 0;
    margin-top: var(--space-sm);
}

.valor-total .valor-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-main);
}

.valor-total .valor-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-decoration: line-through;
}

/* Oferta Section */
.section-oferta {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    padding: var(--space-3xl) 0;
}

.oferta-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-glow-gold);
}

.timer-container {
    margin-bottom: var(--space-xl);
}

.timer-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
}

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

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--accent-gold);
    background: var(--bg-main);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    min-width: 70px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
    display: block;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
    padding-bottom: 1.5rem;
}

.oferta-pricing {
    margin-bottom: var(--space-lg);
}

.price-installment {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.price-installment .price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.price-cash {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
}

.price-cash .price-value {
    font-weight: 600;
}

.price-savings {
    font-size: 0.875rem;
    color: var(--accent-rose);
    font-weight: 500;
}

.oferta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--space-md);
}

/* Garantia Section */
.section-garantia {
    background: var(--bg-main);
}

.garantia-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-secondary);
    border: 1px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.garantia-icon {
    margin-bottom: var(--space-lg);
}

.garantia-icon svg {
    color: var(--accent-gold);
}

.garantia-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ Section */
.section-faq {
    background: var(--bg-secondary);
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-main);
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-question:focus {
    outline: none;
    color: var(--accent-gold);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    color: var(--accent-gold);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Últimas Section */
.section-ultimas {
    background: var(--bg-main);
    text-align: center;
}

/* Agir Section */
.section-agir {
    background: var(--bg-secondary);
}

.urgency-list {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--divider);
}

.urgency-list li:last-child {
    border-bottom: none;
}

.urgency-list svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.urgency-list span {
    font-size: 1.0625rem;
    color: var(--text-main);
}

/* Fechamento Section */
.section-fechamento {
    background: var(--bg-main);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.choice-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

@media (min-width: 640px) {
    .choice-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.choice-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.choice-card svg {
    margin-bottom: var(--space-md);
}

.choice-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.choice-card.negative {
    background: rgba(122, 30, 58, 0.1);
    border: 1px solid rgba(122, 30, 58, 0.3);
}

.choice-card.negative svg {
    color: var(--accent-wine);
}

.choice-card.negative p {
    color: var(--text-secondary);
}

.choice-card.positive {
    background: rgba(200, 163, 95, 0.1);
    border: 1px solid rgba(200, 163, 95, 0.3);
}

.choice-card.positive svg {
    color: var(--accent-gold);
}

.choice-card.positive p {
    color: var(--text-main);
}

/* Sobre Section */
.section-sobre {
    background: var(--bg-secondary);
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .sobre-container {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-2xl);
    }
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-height: 550px;
    width: auto;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.sobre-content .section-title {
    margin-bottom: var(--space-lg);
}

.sobre-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.sobre-text.highlight {
    color: var(--accent-rose);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
}

.sobre-text.assinatura {
    color: var(--text-main);
    font-size: 1.125rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--divider);
}

.sobre-text.assinatura strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--divider);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}




@media (min-width: 1024px) {

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--divider);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-wine);
}
