/* ==========================================================================
   Design Tokens & Reset
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-deep: #09090b;       /* Obsidian black */
    --color-bg-card: #151518;       /* Charcoal background for cards */
    --color-bg-card-hover: #1c1c21; /* Slightly lighter on hover */
    --color-text-main: #f4f4f5;     /* Soft white/ivory */
    --color-text-muted: #a1a1aa;    /* Warm neutral gray */
    --color-text-dark: #71717a;     /* Darker gray for less important elements */
    
    /* Premium Burnt Gold System */
    --color-gold-light: #f5e0b3;    /* Cream gold highlight */
    --color-gold: #cca43b;          /* Sophisticated burnt gold */
    --color-gold-hover: #b38d2f;    /* Hover state gold */
    --color-gold-dark: #82631c;     /* Shadow gold */
    --color-gold-rgba: rgba(204, 164, 59, 0.2);
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-glass: 1px solid rgba(204, 164, 59, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.accent-gold { color: var(--color-gold); }
.text-highlight {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.align-center {
    align-items: center;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-tag-gold {
    background: var(--color-gold-rgba);
    border: var(--border-gold-glass);
    color: var(--color-gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 16px;
}

section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 48px auto;
    font-weight: 300;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: #000000;
    border: none;
    box-shadow: 0 4px 20px rgba(204, 164, 59, 0.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(204, 164, 59, 0.4);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #000000;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-subtext {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 4px;
    text-transform: none;
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(9, 9, 11, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.15;
    transition: transform 0.2s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Mobile nav drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 65px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: var(--color-bg-deep);
    z-index: 999;
    padding: 40px 24px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    left: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.drawer-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--color-gold-light);
}

.drawer-cta {
    width: 100%;
    margin-top: 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    background: #09090b;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(9, 9, 11, 0.3) 0%, rgba(9, 9, 11, 0.95) 90%), url('assets/Banner pagina de vendas.png');
    background-size: cover;
    background-position: center;
    opacity: 0.32; /* Increased from 0.18 to make it brighter */
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.tag-badge .tag-icon {
    color: var(--color-gold);
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.meta-title {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.meta-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-main);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.urgency-counter {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* Video/Media Card Container */
.hero-media-wrapper {
    position: relative;
}

.video-container-card {
    background: var(--color-bg-card);
    border: var(--border-gold-glass);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    border-radius: calc(var(--border-radius-lg) - 8px);
    overflow: hidden;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: var(--transition-smooth);
}

.video-thumbnail:hover .thumbnail-image {
    transform: scale(1.03);
    filter: brightness(0.7) contrast(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 0 0 30px rgba(204, 164, 59, 0.4);
    transition: var(--transition-smooth);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(204, 164, 59, 0.6);
    background: var(--color-gold-light);
}

.play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 4px; /* visually center the triangle */
}

.play-text {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-radius: 50px;
    border: var(--border-glass);
}

.video-player-frame {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--border-radius-lg) - 8px);
    overflow: hidden;
}

/* Hero Support Section & Row Styling */
.hero-support-section {
    background: #09090b;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: var(--border-glass);
}

.hero-support-container {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.hero-support-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.hero-support-intro h3 {
    font-size: 28px;
    font-family: 'Outfit', sans-serif;
    color: var(--color-gold-light);
    margin-bottom: 24px;
}

.support-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
}

.support-para {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
}

.hero-support-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.support-pillar-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.support-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-gold);
    opacity: 0.7;
}

.support-pillar-card:hover {
    border-color: rgba(204, 164, 59, 0.3);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
}

.pillar-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.pillar-badge {
    align-self: flex-start;
    background: var(--color-gold-rgba);
    border: var(--border-gold-glass);
    color: var(--color-gold-light);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.support-pillar-card h4 {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin: 0;
}

.support-pillar-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

.hero-support-footer {
    max-width: 700px;
    margin: 0 auto;
}

.support-outro {
    font-size: 18px;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 28px;
    font-style: italic;
}

/* ==========================================================================
   Section 3: Horizontal Scroll Section (5 Pilares da Liberdade)
   ========================================================================== */

.horizontal-scroll-section {
    background: radial-gradient(circle at 30% 50%, rgba(204, 164, 59, 0.05) 0%, rgba(9, 9, 11, 0) 60%);
    position: relative;
    border-bottom: var(--border-glass);
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}

.scroll-pin-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.scroll-pin-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    position: relative;
}

.scroll-pin-container .section-header {
    margin-bottom: 40px;
    z-index: 10;
}

.scroll-instruction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-gold-light);
    margin-top: 8px;
    margin-bottom: 0;
    opacity: 0.8;
}

.swipe-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.animate-swipe {
    animation: swipe-motion 1.8s infinite ease-in-out;
}

@keyframes swipe-motion {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

.cards-scroll-outer {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.cards-scroll-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
}

.cards-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.scroll-card {
    flex: 0 0 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    scroll-snap-align: center;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .scroll-card {
        flex: 0 0 380px;
        scroll-snap-align: start;
    }
}

.scroll-card-inner {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 44px 36px;
    width: 100%;
    max-width: 650px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.scroll-card-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.scroll-card:hover .scroll-card-inner {
    transform: translateY(-8px);
    border-color: rgba(204, 164, 59, 0.35);
    background: var(--color-bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.scroll-card:hover .scroll-card-inner::after {
    opacity: 1;
}

.card-visual {
    width: 54px;
    height: 54px;
    background: rgba(204, 164, 59, 0.07);
    border: 1px solid rgba(204, 164, 59, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.scroll-card:hover .card-visual {
    background: var(--color-gold);
    color: #000000;
    box-shadow: 0 0 20px rgba(204, 164, 59, 0.4);
}

.card-visual svg {
    width: 24px;
    height: 24px;
}

.scroll-card h3 {
    font-size: 22px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 16px 0 6px 0;
}

.card-subtitle {
    font-size: 14.5px;
    color: var(--color-gold-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.scroll-card p {
    font-size: 14.5px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Dots */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    z-index: 10;
}

/* Floating Navigation Arrows */
.scroll-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(25, 25, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scroll-arrow-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.08);
}

.scroll-arrow-btn.prev-btn {
    left: -24px;
}

.scroll-arrow-btn.next-btn {
    right: -24px;
}

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

@media (max-width: 991px) {
    .scroll-arrow-btn {
        width: 40px;
        height: 40px;
    }
    .scroll-arrow-btn.prev-btn {
        left: 4px;
    }
    .scroll-arrow-btn.next-btn {
        right: 4px;
    }
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

.indicator-dot:hover {
    background: var(--color-gold-light);
}

/* ==========================================================================
   Pain / Problem Section
   ========================================================================== */

.problems-section {
    background: #0d0d0f;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: rgba(204, 164, 59, 0.3);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
}

.problem-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Subtle backdrop texture */
    transition: opacity 0.3s ease, transform 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.problem-card:hover .problem-card-bg {
    opacity: 0.25; /* Brighten on hover */
    transform: scale(1.05); /* Slight zoom animation */
}

.problem-card-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(204, 164, 59, 0.1);
    border: var(--border-gold-glass);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 300;
}

.pain-narrative {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 32px;
    background: radial-gradient(circle at center, rgba(204, 164, 59, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: var(--border-radius-md);
    border: 1px dashed rgba(204, 164, 59, 0.2);
}

.narrative-highlight {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 12px;
}

.narrative-body {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ==========================================================================
   Solution Section
   ========================================================================== */

.solution-section {
    background: radial-gradient(circle at 10% 50%, rgba(204, 164, 59, 0.04) 0%, rgba(9, 9, 11, 0) 40%);
}

.solution-image-container {
    position: relative;
    display: flex;
    align-items: center;
}

.image-accent-border {
    position: relative;
    border: var(--border-gold-glass);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    background: var(--color-bg-card);
    width: 100%;
}

.image-accent-border::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
    border-top-left-radius: 16px;
    z-index: -1;
}

.solution-img {
    width: 100%;
    border-radius: calc(var(--border-radius-lg) - 8px);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    filter: grayscale(15%) contrast(1.05);
}

.solution-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h2 {
    margin-left: 0;
    text-align: left;
    font-size: 34px;
}

.solution-content p {
    color: var(--color-text-muted);
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 300;
}

.solution-benefits-list {
    list-style: none;
    margin-bottom: 36px;
}

.solution-benefits-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.benefit-check {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.solution-benefits-list span {
    font-size: 15px;
    color: var(--color-text-main);
    font-weight: 300;
}

.solution-benefits-list strong {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   Details / Info Section
   ========================================================================== */

.details-section {
    background: #0d0d0f;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.details-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.details-card:hover {
    border-color: rgba(204, 164, 59, 0.25);
    transform: translateY(-4px);
}

.details-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.details-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.details-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
}

.gallery-wrapper {
    margin-top: 80px;
}

.gallery-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    color: var(--color-gold-light);
}

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

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: var(--border-glass);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* ==========================================================================
   Modules Timeline
   ========================================================================== */

.modules-section {
    background: var(--color-bg-deep);
}

.modules-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}

.modules-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 19px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--color-gold) 0%, rgba(204, 164, 59, 0.1) 100%);
}

.module-item {
    position: relative;
    margin-bottom: 48px;
}

.module-item:last-child {
    margin-bottom: 0;
}

.module-number {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-deep);
    border: 2px solid var(--color-gold);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(204, 164, 59, 0.3);
    z-index: 2;
}

.module-content {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.module-item:hover .module-content {
    border-color: rgba(204, 164, 59, 0.3);
    background: var(--color-bg-card-hover);
}

.module-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.module-content p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 300;
}

.module-deliverable {
    display: block;
    font-size: 13px;
    color: var(--color-gold-light);
    background: rgba(204, 164, 59, 0.08);
    border: var(--border-gold-glass);
    padding: 8px 16px;
    border-radius: 6px;
}

/* ==========================================================================
   Qualification Section ("Para quem é/não é")
   ========================================================================== */

.qualification-section {
    background: #0d0d0f;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.qualification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.qualify-card {
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.qualify-card.is-for {
    background: linear-gradient(180deg, rgba(204, 164, 59, 0.03) 0%, rgba(20, 20, 24, 0.7) 100%);
    border: 1px solid rgba(204, 164, 59, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qualify-card.is-not {
    background: rgba(21, 21, 24, 0.6);
    border: var(--border-glass);
}

.qualify-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.qualify-badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
}

.is-for .qualify-badge {
    background: var(--color-gold);
    color: #000000;
}

.is-not .qualify-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.qualify-card h3 {
    font-size: 20px;
}

.qualify-list {
    list-style: none;
}

.qualify-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 300;
}

.qualify-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
    font-size: 16px;
}

.is-for .qualify-list li::before {
    content: '✓';
    color: var(--color-gold);
}

.is-not .qualify-list li::before {
    content: '×';
    color: #ef4444;
    font-size: 18px;
    top: 0;
}

/* ==========================================================================
   Instructor / Founder Section
   ========================================================================== */

.instructor-section {
    background: var(--color-bg-deep);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas: 
        "header image"
        "bio image"
        "stats image";
    gap: 0 64px;
    align-items: center;
}

.instructor-header {
    grid-area: header;
}

.instructor-header h2 {
    margin-left: 0;
    text-align: left;
    font-size: 34px;
}

.instructor-intro {
    font-size: 18px;
    font-style: italic;
    color: var(--color-gold-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.instructor-bio {
    grid-area: bio;
}

.instructor-bio p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 300;
}

.instructor-stats {
    grid-area: stats;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-top: 36px;
    border-top: var(--border-glass);
    padding-top: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 180px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.instructor-image-wrapper {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructor-card-container {
    position: relative;
    border: var(--border-gold-glass);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    background: var(--color-bg-card);
    width: 80%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.instructor-img {
    width: 100%;
    border-radius: calc(var(--border-radius-lg) - 8px);
    display: block;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    filter: contrast(1.05) grayscale(20%);
}

.instructor-name-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #111115;
    border: var(--border-gold-glass);
    padding: 16px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    width: 85%;
    box-shadow: 0 10px 24px rgba(0,0,0,0.8);
}

.instructor-name-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 4px;
}

.instructor-name-card p {
    font-size: 12px;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */

.social-proof-section {
    background: #0d0d0f;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.impact-banner {
    max-width: 800px;
    margin: 0 auto 80px auto;
    border: var(--border-gold-glass);
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 48px;
    border-radius: var(--border-radius-lg);
}

.impact-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 0.1em;
}

.impact-number {
    font-size: 80px;
    font-weight: 800;
    margin: 12px 0;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--color-text-main);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(204, 164, 59, 0.25);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
}

.testimonial-rating {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--color-gold);
}

.testimonial-text {
    color: var(--color-text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: var(--border-glass);
    padding-top: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--color-gold);
}

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.author-company {
    font-size: 12px;
    color: var(--color-text-dark);
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */

.guarantee-section {
    background: var(--color-bg-deep);
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.05) 0%, rgba(21, 21, 24, 0.95) 100%);
    border: var(--border-gold-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    gap: 32px;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gold-rgba);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-badge-icon {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
}

.guarantee-content h2 {
    margin-left: 0;
    text-align: left;
    font-size: 28px;
    margin-bottom: 12px;
}

.guarantee-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gold-light);
    text-transform: uppercase;
}

.guarantee-text {
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   Application / Registration Form Section
   ========================================================================== */

.application-section {
    background: #0d0d0f;
    border-top: var(--border-glass);
}

.application-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: var(--border-gold-glass);
    border-radius: var(--border-radius-lg);
    padding: 60px 48px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.application-header {
    margin-bottom: 40px;
}

.application-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.application-header p {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(204, 164, 59, 0.1);
}

.form-group select option {
    background: var(--color-bg-card);
    color: #ffffff;
}

.form-submit {
    margin-top: 16px;
}

.form-submit button {
    border: none;
    width: 100%;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.form-success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #10b981;
}

.form-success-message p {
    color: var(--color-text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background: var(--color-bg-deep);
    border-top: var(--border-glass);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(204, 164, 59, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 32px;
    text-align: left;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon-arrow {
    font-size: 20px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--color-gold-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 32px 28px 32px;
    color: var(--color-text-muted);
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   Footer & Floating CTA
   ========================================================================== */

.main-footer {
    background: #060608;
    border-top: var(--border-glass);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-container {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 320px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold-light);
    margin-bottom: 20px;
}

.footer-links a,
.footer-legal a {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 300;
}

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

.copyright {
    font-size: 12px;
    color: var(--color-text-dark);
    margin-top: 24px;
    line-height: 1.5;
    border-top: var(--border-glass);
    padding-top: 16px;
}

/* Floating CTA button (highly visible premium widget) */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 99;
    transform: translateY(150px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(204, 164, 59, 0.25);
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9), 0 0 20px rgba(204, 164, 59, 0.15);
}

.floating-cta.visible {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .floating-cta {
        left: 50%;
        right: auto;
        transform: translate(-50%, 150px);
        width: 420px;
    }
    .floating-cta.visible {
        transform: translate(-50%, 0);
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Pulse dot animation */
@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Pulse CTA animation */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 4px 20px rgba(204, 164, 59, 0.25);
    }
    50% {
        box-shadow: 0 4px 30px rgba(204, 164, 59, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(204, 164, 59, 0.25);
    }
}

.pulse-animation {
    animation: pulse-gold 2.5s infinite ease-in-out;
}

/* Scroll reveal initial states */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    h1, .hero-content h1 { font-size: 38px; }
    h2, section h2 { font-size: 32px; }
    .grid-2-cols { gap: 32px; }
    .photo-gallery { grid-template-columns: repeat(2, 1fr); }
    .instructor-card-container { width: 100%; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instructor-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "image"
            "bio"
            "stats";
        gap: 28px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-bg-overlay {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.35;
        background-image: linear-gradient(180deg, rgba(9, 9, 11, 0.55) 0%, rgba(9, 9, 11, 0.98) 95%), url('assets/banner-mobile.jpeg');
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-cta-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    /* Header mobile navigation */
    .header-nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .problem-card-bg {
        opacity: 0.15; /* Make background images slightly more visible on mobile by default */
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-card {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        gap: 20px;
    }
    
    .guarantee-content h2 {
        text-align: center;
    }
    
    .application-card {
        padding: 40px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }

    .hero-support-section {
        padding: 60px 0;
    }

    .hero-support-container {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-support-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-support-intro h3 {
        font-size: 24px;
    }

    .horizontal-scroll-section {
        padding: 0;
        background: #09090b;
    }
    
    .scroll-pin-wrapper {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }
    
    .scroll-pin-container {
        height: 100%;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .scroll-pin-container .section-header {
        margin-bottom: 20px;
    }

    .scroll-instruction {
        display: inline-flex;
    }

    .cards-scroll-outer {
        overflow: hidden;
    }

    .cards-scroll-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: 100%;
        overflow-x: auto;
        padding: 10px 0;
    }
    
    .scroll-card {
        flex: 0 0 85%;
        padding: 0;
    }

    .scroll-card-inner {
        padding: 24px 20px;
        min-height: 280px;
        max-width: 100%;
    }

    .scroll-indicators {
        display: flex;
        margin-top: 20px;
    }
}

/* ==========================================================================
   Image Lightbox Modal
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 70vh;
    border-radius: 12px;
    border: 2px solid rgba(204, 164, 59, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 30px rgba(204, 164, 59, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 45px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-gold-light);
    text-decoration: none;
}

.lightbox-caption {
    margin: 20px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* Avatar Hover Zoom Indicator */
.testimonial-card .avatar {
    cursor: zoom-in;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card .avatar:hover {
    transform: scale(1.1);
    border-color: var(--color-gold);
}
