/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║                                                                          ║
   ║   🎨  CORES DE DESTAQUE — ALTERE AQUI PARA PERSONALIZAR SUA PÁGINA       ║
   ║                                                                          ║
   ║   Todas as cores da página são controladas pelas variáveis abaixo.       ║
   ║   Para mudar a identidade visual inteira, basta alterar os valores.      ║
   ║                                                                          ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

:root {
    /* ─── COR PRINCIPAL DE DESTAQUE (Accent) ───────────────────────────────── */
    --accent: #A65A32;
    --accent-hover: #A65A32;
    --accent-glow: rgba(166, 90, 50, 0.14);

    /* ─── COR SECUNDÁRIA DE DESTAQUE ───────────────────────────────────────── */
    --accent-secondary: #C89B3C;

    /* ─── COR DOS BOTÕES CTA (Call to Action) ──────────────────────────────── */
    --cta-gradient-start: #3F5A36;
    --cta-gradient-end: #2E4128;
    --cta-shadow: rgba(63, 90, 54, 0.3);

    /* ─── COR DE SUCESSO / CHECKS ──────────────────────────────────────────── */
    --success: #3F5A36;

    /* ─── FUNDOS E TEXTOS POR PADRÃO (Tema Claro/Creme) ───────────────────── */
    --bg-main: #F8F1E7;
    --bg-section: #F8F1E7;
    --bg-card: #FFFaf2;
    --bg-card-hover: #FFFaf2;

    /* ─── TEXTOS ───────────────────────────────────────────────────────────── */
    --text-primary: #3A2418;
    --text-secondary: #5E5148;
    --text-muted: #5E5148;
    --text-inverse: #FFFaf2;

    /* ─── BORDAS ───────────────────────────────────────────────────────────── */
    --border-color: #E4D3BE;
    --border-glow: rgba(166, 90, 50, 0.3);

    /* ─── FONTES ───────────────────────────────────────────────────────────── */
    --font-heading: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* ─── TRANSIÇÕES ─────────────────────────────────────────────────────────  */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* ─── LAYOUT ─────────────────────────────────────────────────────────────  */
    --container-width: 800px;
    --shadow-premium: 0 20px 40px -15px rgba(58, 36, 24, 0.12);
}

/* ─── LOCAL THEME OVERRIDES FOR DARK BACKGROUND SECTIONS ─────────────────── */
.hero-section,
.gradient-bg-dark,
.footer-section {
    --bg-main: #F8F1E7;
    --bg-section: #F8F1E7;
    --bg-card: #FFFaf2;
    --bg-card-hover: #FFFaf2;
    
    --text-primary: #3A2418;
    --text-secondary: #5E5148;
    --text-muted: #5E5148;
    --border-color: #E4D3BE;
    
    color: var(--text-primary);
}


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

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}


/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.pricing-section {
    scroll-margin-top: 4rem;
}

.gradient-bg-dark {
    background-color: var(--bg-main);
}

.gradient-bg-accent {
    background-color: var(--accent);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-inverse);
}

/* ─── TÍTULOS GRANDES E MARCANTES ─────────────────────────────────────── */
.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -1.75rem;
    margin-bottom: 2.5rem;
}

.section-subtitle-small {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
    color: var(--text-secondary);
}

.img-responsive {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
}

.pulse-icon {
    display: inline-block;
    animation: text-pulse 2s infinite;
}


/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes text-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 var(--cta-shadow); }
    70% { box-shadow: 0 0 0 12px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.pulse-animation {
    animation: pulse-shadow 2.5s infinite;
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--scroll-distance))); }
}

@keyframes scroll-carousel-reverse {
    0% { transform: translateX(calc(-1 * var(--scroll-distance))); }
    100% { transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}


/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
    background-color: var(--accent);
    color: var(--text-inverse);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.05em;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(58, 36, 24, 0.18);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 4rem 0 5rem 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.main-title {
    font-size: 2.80rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.subtitle {
    font-size: 1.35rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
    line-height: 1.4;
}

.subtitle .highlight {
    color: var(--accent-secondary);
    font-weight: 700;
}

.subtitle .underline {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

.hero-media {
    margin: 2.5rem auto;
    display: block;
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-media::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--accent-glow);
    filter: blur(80px);
    z-index: -1;
    top: 20%;
    left: 20%;
    pointer-events: none;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

.hero-image:hover {
    transform: scale(1.01) translateY(-2px);
}

.hero-tagline {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    background-color: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-tagline b {
    color: var(--text-primary);
}

.hero-bullets {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.bullet-icon {
    background-color: var(--accent-glow);
    color: var(--accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 1px solid var(--border-glow);
}


/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    background-color: var(--cta-gradient-start);
    color: var(--text-inverse);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    text-align: center;
    border: 1px solid var(--border-color);
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--cta-shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--cta-gradient-end);
    box-shadow: 0 12px 30px var(--cta-shadow);
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}


/* ==========================================================================
   ★ CARROSSEL INFINITO (Infinite Marquee Carousel)
   ========================================================================== */
.infinite-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

/* Fade nas bordas do carrossel para efeito premium */
.infinite-carousel::before,
.infinite-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.infinite-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    --scroll-distance: 50%;
    animation: scroll-carousel 22s linear infinite;
}

.carousel-track.reverse {
    animation-name: scroll-carousel-reverse;
}

.carousel-item {
    flex-shrink: 0;
    width: 220px;
    aspect-ratio: 210 / 297;
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bg-card);
}

.carousel-item.gallery-item {
    width: 280px;
}


/* ==========================================================================
   Products Showcase
   ========================================================================== */
.main-showcase-image {
    margin-bottom: 2rem;
}


/* ==========================================================================
   Features Overview
   ========================================================================== */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(4px);
    border-color: var(--border-glow);
    background-color: var(--bg-card-hover);
}

.feature-icon-wrapper {
    background-color: var(--accent-glow);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-glow);
}

.feature-emoji {
    font-size: 2rem;
    line-height: 1;
}

.feature-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.badge-accent {
    width: fit-content;
    margin: 2rem auto;
    background-color: var(--accent-glow);
    color: var(--accent);
    border: 1px solid var(--border-glow);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}


/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.benefit-check {
    color: var(--success);
    font-weight: 900;
    font-size: 1.2rem;
}


/* ==========================================================================
   Urgency Timer
   ========================================================================== */
.timer-title {
    font-size: 2.25rem;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-inverse);
    text-transform: uppercase;
}

.timer-subtitle {
    text-align: center;
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.timer-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 90px;
    border: 1px solid var(--border-glow);
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-secondary);
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.timer-colon {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-inverse);
    line-height: 1;
    margin-top: -20px;
}

.dark-cta {
    background: var(--cta-gradient-start);
    color: var(--text-inverse);
    box-shadow: 0 10px 25px var(--cta-shadow);
}

.dark-cta:hover {
    background: var(--cta-gradient-end);
    box-shadow: 0 12px 30px var(--cta-shadow);
}


/* ==========================================================================
   Target Audience
   ========================================================================== */
.audience-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.audience-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 14px;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.audience-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-glow);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.audience-check {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.audience-header h3 {
    font-size: 1.15rem;
    line-height: 1.3;
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 2rem;
}


/* ==========================================================================
   Deliverables Box
   ========================================================================== */
.deliverables-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.deliverables-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
}

.deliverable-header {
    margin-bottom: 2rem;
}

.deliverable-tag {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-inverse);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.deliverable-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.deliverable-header p {
    color: var(--text-secondary);
}

.deliverable-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.deliverable-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.deliverable-details h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.deliverable-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.deliverable-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverable-bullets li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}


/* ==========================================================================
   Bonuses Section
   ========================================================================== */
.bonus-intro-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bonus-intro-header h2 {
    font-size: 1.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bonus-glow {
    font-size: 1.75rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.bonus-main-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--accent-glow);
    text-transform: uppercase;
}

.bonuses-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bonus-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-header {
    background-color: var(--accent);
    color: var(--text-inverse);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.05em;
}

.bonus-body {
    padding: 2rem;
}

.bonus-img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    width: 100%;
    aspect-ratio: 210 / 297;
    object-fit: contain;
    background-color: var(--bg-card);
}

.bonus-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.bonus-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.bonus-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.bonus-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.bonus-bullets li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

.bonus-price {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.free-badge {
    color: var(--success);
    font-weight: 800;
}


/* ==========================================================================
   Pricing Section / Cards
   ========================================================================== */
.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing-badge {
    background-color: var(--accent);
    color: var(--text-inverse);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.pricing-header h2 {
    font-size: 2.75rem;
    text-transform: uppercase;
}

.pricing-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.price-card-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.price-card-subtitle {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.price-card-image-wrapper {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.price-card-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 250px;
    object-fit: contain;
}

.price-card-features {
    margin-bottom: 2.5rem;
}

.features-intro {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.price-card-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.price-card-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.price-card-features li.bonus-highlight {
    color: var(--accent-secondary);
}

.price-box {
    text-align: center;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.price-from {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.price-main {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0.25rem 0;
}

.price-installments {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.saving-badge {
    display: inline-block;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.basic-btn {
    background-color: var(--cta-gradient-start);
    border: 1px solid var(--border-color);
    color: var(--text-inverse);
}

.basic-btn:hover {
    background-color: var(--cta-gradient-end);
    transform: translateY(-2px);
}

/* Complete Card Highlighted */
.price-card.highlighted {
    border: 2px solid var(--accent);
    background-color: var(--bg-card-hover);
}

.price-card.highlighted::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 18px;
    box-shadow: 0 0 40px var(--accent-glow);
    pointer-events: none;
    z-index: -1;
}

.most-popular-tag {
    background-color: var(--accent-secondary);
    color: var(--text-inverse);
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.5rem;
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    text-transform: uppercase;
}

.glow-border-bar {
    background-color: var(--accent);
    color: var(--text-inverse);
    font-weight: 900;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.4rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.urgency-badge {
    text-align: center;
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlighted-price {
    color: var(--accent-secondary);
    text-shadow: 0 0 15px rgba(200, 155, 60, 0.2);
}

.highlighted-saving {
    background-color: rgba(200, 155, 60, 0.1);
    border-color: rgba(200, 155, 60, 0.3);
    color: var(--accent-secondary);
    font-weight: 700;
}

.complete-btn {
    background: var(--cta-gradient-start);
    color: var(--text-inverse);
    box-shadow: 0 8px 25px var(--cta-shadow);
}

.complete-btn:hover {
    transform: translateY(-2px);
    background: var(--cta-gradient-end);
    box-shadow: 0 12px 30px var(--cta-shadow);
}

.upsell-hook {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background-color: var(--bg-section);
    padding: 0.85rem;
    border-radius: 8px;
    border: 1px dashed var(--accent);
}

.hook-arrow {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
    animation: bounceUpDown 1.5s infinite;
}

.hook-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.3;
}

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

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.payment-badge {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(58, 36, 24, 0.05);
}

.one-model-ROI {
    background-color: rgba(63, 90, 54, 0.08);
    border: 1px solid rgba(63, 90, 54, 0.25);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.roi-check {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.one-model-ROI span b {
    color: var(--success);
}


/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonials-slider-container {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem 2rem 2rem;
    margin: 2rem 0 3rem 0;
    min-height: 280px;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    width: 100%;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    animation: fadeIn var(--transition-normal);
}

.testimonial-slide.active {
    display: flex;
}

.stars-rating {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 600px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--bg-section);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}


/* ==========================================================================
   Guarantee Section
   ========================================================================== */
.guarantee-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
}

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

.guarantee-emoji {
    font-size: 5rem;
    line-height: 1;
    display: block;
    text-align: center;
}

.guarantee-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
    text-transform: uppercase;
}

.guarantee-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.guarantee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.guarantee-list li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1.1;
}

.guarantee-action {
    background-color: var(--accent-glow);
    border: 1px solid var(--border-glow);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.highlight-action {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.guarantee-conditions {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.guarantee-assurance {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ==========================================================================
   Step By Step
   ========================================================================== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    position: relative;
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--accent-glow);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.step-emoji {
    font-size: 2.25rem;
    line-height: 1;
}

.step-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: var(--accent);
    color: var(--text-inverse);
    font-family: var(--font-heading);
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 2px solid var(--bg-card);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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


/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
}

.faq-arrow {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
    line-height: 1;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-item.active .faq-question {
    color: var(--accent-secondary);
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
    color: var(--accent-secondary);
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer-section {
    padding: 4rem 0;
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}


/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (min-width: 600px) {
    .deliverable-split {
        flex-direction: row;
        align-items: center;
    }

    .deliverable-media {
        flex: 1;
    }

    .deliverable-details {
        flex: 1.2;
    }

    .pricing-cards-container {
        flex-direction: row;
        align-items: stretch;
    }

    .price-card {
        flex: 1;
    }

    .complete-card {
        margin-top: 24px;
    }

    .carousel-item {
        width: 260px;
    }

    .carousel-item.gallery-item {
        width: 340px;
    }
}

@media (max-width: 599px) {
    .main-title {
        font-size: 2.5rem;
    }

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

    .pricing-header h2 {
        font-size: 1.85rem;
    }

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

    .bonus-main-title {
        font-size: 2rem;
    }

    .guarantee-title {
        font-size: 1.5rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .testimonials-slider-container {
        padding: 2.5rem 1.25rem 1.5rem 1.25rem;
    }

    .carousel-item {
        width: 180px;
    }

    .carousel-item.gallery-item {
        width: 220px;
    }

    .cta-button {
        font-size: 1.15rem;
        padding: 1rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1.25rem 1rem;
    }

    .hero-section {
        padding: 2.5rem 0 3.5rem 0;
    }
}
