:root {
    /* Colors */
    --bg-color: #000000;
    --text-color: #ffffff;
    --gold-start: #ffffff;
    /* White */
    --gold-end: #d0c89e;
    /* Champagne Gold */
    --gold-hover: #e0d8b0;

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    /* Gilroy Alternative */
    --font-secondary: 'Outfit', sans-serif;
    /* Unify typography */

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('bg_02.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Grid Container */
.global-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Consistent side padding */
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    /* Vertical padding only, horiz handled by container */
    display: flex;
    justify-content: center;
    /* Center the container */
    z-index: 100;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    /* Extra Bold */
    color: white;
    letter-spacing: 1px;
}

.logo-dot {
    color: #999;
    /* Gray dot */
}

.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.site-header nav a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.site-header nav a:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical Center */
    align-items: center;
    /* Horizontal Center */
    text-align: center;
    padding: 120px 20px 50px;
    /* Increased top padding */
    background-color: transparent;
    /* Removed hero_bg.png to show global bg */
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    /* Responsive width */
    max-width: 900px;
    aspect-ratio: 16 / 9;
    /* Enforce standard video ratio */
    margin: 0 auto 30px auto;
    /* Force horizontal centering */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid #333;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Click Layer - Invisible but clickable */
.video-click-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.video-click-layer:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle hover effect */
}

/* Mute Icon Overlay */
.mute-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Below click layer visually, but pointer-events will handle passing clicks */
    pointer-events: none;
    /* Allow clicks to pass through to the layer */
    opacity: 0.6;
    /* Semi-transparent */
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.4);
    /* Optional: dark circle background for better contrast */
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.hero-welcome {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.hero-title {
    font-size: 5rem;
    /* Big */
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    /* Regular/Light */
    margin-bottom: 30px;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(to right, #FCEABB 0%, #F8B500 50%, #FCEABB 100%);
    background: linear-gradient(to right, var(--gold-start) 0%, var(--gold-end) 50%, var(--gold-start) 100%);
    background-size: 200% auto;
    color: #000;
    /* Black text */
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 800;
    /* Bold */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    /* Remove underline from anchor */
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.4);
    /* Glow */
    transition: 0.3s;
}

.btn-gold:hover {
    background-position: right center;
    /* animate gradient */
    box-shadow: 0 0 30px rgba(248, 181, 0, 0.6);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .video-wrapper {
        width: 80%;
        /* Wider on tablets */
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px 40px;
    }

    .video-wrapper {
        width: 95%;
        /* Almost full width on mobile */
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .site-header {
        padding: 20px;
    }

    .logo {
        font-size: 1rem;
    }

    .site-header nav ul {
        gap: 15px;
    }

    .site-header nav a {
        font-size: 0.7rem;
    }
}

/* =========================================
   Section 2: Parallax Logo & Invite
   ========================================= */

.two-section {
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Hide parallax overflow */
}

.container-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    /* Bring content to front */
}

/* Parallax Image Wrapper */
.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust based on image aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    perspective: 1000px;
    /* Enable 3D depth */
    /* Optional: jagged paper background styling if not in image
       For now, assuming image carries the visual weight.
       If 'Ativo 3.png' is just the M, we might need a background here.
       Based on "follow image guidelines", the M sits on a jagged paper.
       I'll add a placeholder background style just in case. */
}

.parallax-img {
    max-width: 130%;
    /* Increased size */
    max-height: 150%;
    /* Increased size */
    width: auto;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smoother */
    /* Init state */
    will-change: transform;
}

/* Text Styling */
.text-content-two {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle-two {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.title-two {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    /* Tight tracking like reference */
}

.separator-two {
    width: 100%;
    /* Or specific width like 80% */
    max-width: 800px;
    height: 4px;
    background-color: #fff;
    margin: 30px 0;
    border-radius: 2px;
}

.description-two {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive for Section 2 */
@media (max-width: 768px) {
    .title-two {
        font-size: 2.5rem;
    }

    .parallax-wrapper {
        height: 250px;
    }
}

/* =========================================
   Section 3: Solving Problem & Form
   ========================================= */

.three-section {
    background-color: transparent;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.container-three {
    display: flex;
    flex-wrap: wrap;
    /* Allow stacking on mobile */
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 50px;
    justify-content: center;
    /* Center content */
}

/* Left Column */
.content-left {
    flex: 1;
    min-width: 300px;
}

.problem-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    /* Gilroy Medium */
    font-family: var(--font-primary);
    color: #ccc;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 3rem;
    font-weight: 700;
    /* Gilroy Bold */
    font-family: var(--font-primary);
    line-height: 1.25;
    margin-bottom: 30px;
}

.problem-text {
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    /* Gilroy Medium */
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.problem-text-highlight {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    /* Gilroy Bold for highlight */
    color: #fff;
    margin-bottom: 40px;
}

/* Form Wrapper */
/* Form Wrapper - Now the Card itself */
.form-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    background-color: #0b0b0b;
    /* Dark card bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    /* Large rounded corners */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 0 20px 0;
    /* Left aligned */
}

.form-bg {
    display: none;
    /* Hide the image background */
}

/* Form Overlay - Reset to relative block */
.contact-form {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 8px;
    /* More spacing */
    color: #fff;
    font-weight: 500;
    margin-top: 15px;
    display: block;
}

.contact-form label:first-child {
    margin-top: 0;
}

.contact-form input {
    background: #fff;
    /* White background */
    border: none;
    border-radius: 8px;
    /* Rounded inputs */
    padding: 12px 15px;
    /* Comfortable padding */
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #000;
    width: 100%;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjusted for larger size */
.btn-gold-small {
    background: linear-gradient(to right, var(--gold-start) 0%, var(--gold-end) 50%, var(--gold-start) 100%);
    background-size: 200% auto;
    color: #000;
    padding: 15px 40px;
    /* Increased padding */
    font-weight: 800;
    border: none;
    border-radius: 8px;
    /* Slightly more rounded */
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    /* Remove underline from anchor */

    /* Centering logic when outside */
    display: block;
    margin: 25px 0 0 0;
    /* Left align (remove auto) */
    width: fit-content;

    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    /* Increased font size */
    letter-spacing: 1px;
    /* More spacing */
}

.btn-gold-small:hover {
    background-position: right center;
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.6);
    /* stronger glow */
    transform: scale(1.05);
    /* Slight grow on hover */
}

/* Right Column */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* Enable 3D tilt */
}

.vector-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
    /* Enable 3D perspective */
    /* Adjust height or aspect ratio if needed */
}

.vector-img {
    width: 100%;
    height: auto;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Responsive for Section 3 */
@media (max-width: 900px) {
    .container-three {
        text-align: center;
        flex-direction: column;
        /* Stack vertically */
        align-items: center;
        /* Center flex items */
    }

    .content-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-wrapper {
        margin: 0 auto 20px auto;
    }

    .contact-form {
        /* Keep form items stretch/left */
        align-items: stretch;
        text-align: left;
    }

    .btn-gold-small {
        margin: 25px auto 0 auto;
        /* Center align */
        width: fit-content;
    }

    .problem-title {
        font-size: 2rem;
    }
}

/* =========================================
   Section 4: Benefits & Clients
   ========================================= */

.four-section {
    background-color: transparent;
    color: #fff;
    padding: 100px 20px 50px;
    /* Partial bottom padding */
    display: flex;
    justify-content: center;
    text-align: center;
}

.container-four {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.benefits-header {
    margin-bottom: 60px;
}

.benefits-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-family: var(--font-primary);
    color: #ccc;
    margin-bottom: 10px;
}

.benefits-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.1;
}

/* Grid System */
.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    margin-bottom: 100px;
}

/* Card Styling */
.benefit-card {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.card-image-wrapper {
    height: 300px;
    /* Increased height for larger images (was 200px) */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.card-img {
    max-width: 100%;
    /* Allow full width (was 80%) */
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    /* Smooth movement */
    will-change: transform;
}

.separator-card {
    width: 80%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 2px;
}

.card-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.card-text p {
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #ddd;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
    /* Center text */
}

/* Clients Strip Marquee */
.clients-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    /* increased padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    /* Optional mask for fading edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 100px;
    /* Increased gap for larger logos */
    animation: scrollClients 40s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
        /* Move 1/3 of total width (1 set) */
    }
}

.client-logo {
    height: 80px;
    /* Increased specific height */
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    /* Grayscale active by default */
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    /* Color on hover */
    transform: scale(1.1);
}

/* =========================================
   Section 5: Partners
   ========================================= */
.partners-section {
    background-color: transparent;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.container-partners {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.partners-title .highlight {
    font-weight: 700;
    color: #fff;
    /* Keep it white or accent if needed */
}

.partners-grid-final {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.partner-gallery-final {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    perspective: 1000px;
    /* Essential for 3D effect */
}

.gallery-img-final {
    width: 100%;
    height: 500px;
    /* Increased height for impact */
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.1s ease-out;
    /* Smoother for mouse movement */
    flex: 1;
    transform-style: preserve-3d;
    will-change: transform;
}

.gallery-img-final:hover {
    /* Hover scale handled by JS now, or combined */
    z-index: 10;
}

@media (max-width: 900px) {
    .partner-gallery-final {
        flex-direction: column;
    }

    .gallery-img-final {
        height: 400px;
    }
}

/* =========================================
   Section 6: FAQ
   ========================================= */
.faq-section {
    background-color: transparent;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.container-faq {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    /* Gold gradient matching CTA */
    background: linear-gradient(90deg, #d0c89e 0%, #ffffff 50%, #d0c89e 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d0c89e;
    /* Fallback */

    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.faq-subtitle {
    color: #888;
    font-size: 1.1rem;
}

.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Turn + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
}

/* Responsive Section 4 */
@media (max-width: 900px) {
    .benefits-grid {
        flex-direction: column;
    }

    .benefits-title {
        font-size: 2.5rem;
    }

    .benefit-card {
        margin-bottom: 30px;
    }
}

/* =========================================
   Section 6: Footer
   ========================================= */
.site-footer {
    background-color: transparent;
    color: #fff;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Consistent side padding */
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 5vw;
    /* Responsive large size */
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-cta:hover {
    opacity: 0.8;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.footer-cta:hover .cta-arrow {
    transform: translateX(20px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    font-family: var(--font-primary);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-column p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FF4500;
}

.copyright-column {
    margin-left: auto;
}

@media (max-width: 768px) {
    .footer-cta {
        font-size: 3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright-column {
        margin-left: 0;
        margin-top: 20px;
        color: #666;
        font-size: 0.9rem;
    }
}

/* =========================================
   Marquee Section (Infinite Loop - Track Method)
   ========================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #0b0b0b;
    padding: 20px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* CTA Background Variant */
.marquee-wrapper.cta-bg {
    background: linear-gradient(to right, var(--gold-start) 0%, var(--gold-end) 50%, var(--gold-start) 100%);
    background-size: 200% auto;
    border: none;
    transition: background-position 0.5s ease;
}

.marquee-wrapper.cta-bg:hover {
    background-position: right center;
}

.marquee-wrapper.cta-bg .marquee-item {
    color: #000;
    font-weight: 500;
    /* Slightly bolder for readability on gold */
}

.marquee-wrapper.cta-bg .marquee-item::after {
    color: #000;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
    /* Ensure no wrapping */
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-primary);
    font-weight: 300;
    /* Light font */
    font-size: 12pt;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding-right: 40px;
    /* Space between items */
}

.marquee-item strong {
    margin-right: 5px;
    font-weight: 900;
    /* Extra bold for emphasis */
}

.marquee-item::after {
    content: "-";
    display: inline-block;
    padding-left: 40px;
    /* Space before separator */
    color: var(--gold-end);
    font-weight: 300;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments for Marquee */
@media (max-width: 768px) {
    .marquee-wrapper {
        padding: 15px 0;
    }

    .marquee-item {
        font-size: 1.1rem;
        padding-right: 25px;
    }

    .marquee-item::after {
        padding-left: 25px;
    }
}

/* =========================================
   Inactivity Pop-up
   ========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* High z-index to ensure visibility */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    max-width: 600px;
    /* Adjust as needed */
    width: 90%;
    background: transparent;
    border-radius: 10px;
    margin: 0 auto;
}

.popup-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.popup-cta {
    position: relative;
    margin-top: 20px;
    bottom: auto;
    left: auto;
    transform: none;

    background: linear-gradient(90deg, #d0c89e 0%, #ffffff 50%, #d0c89e 100%);
    background-size: 200% auto;
    color: #000;
    padding: 10px 20px;
    /* Slightly smaller padding */
    font-size: 0.8rem;
    /* Use rem for scalability */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    z-index: 10;
}

.popup-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.popup-disclaimer {
    position: relative;
    margin-top: 15px;
    width: auto;
    max-width: 100%;

    font-size: 0.7rem;
    color: #ccc;

    text-align: center;
    font-family: var(--font-primary);
    opacity: 0.9;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.close-popup:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* =========================================
   WhatsApp CTA Section
   ========================================= */
.whatsapp-section {
    background: linear-gradient(90deg, #d0c89e 0%, #ffffff 50%, #d0c89e 100%);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    /* Optional: Animated background */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.container-whatsapp {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-title {
    font-size: 3.5rem;
    /* Increased from 2.5rem */
    font-weight: 900;
    /* Extra bold */
    color: #000;
    /* Dark text for light background */
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    /* Optional: adds more impact */
}

.separator-whatsapp {
    width: 60px;
    height: 4px;
    background: #000;
    /* Dark separator */
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.whatsapp-subtitle {
    font-size: 1.1rem;
    color: #333;
    /* Dark gray text */
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
}

.whatsapp-btn {
    background: #000;
    /* Black button */
    color: #d0c89e;
    /* Gold text */
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    /* Remove underline from anchor */
    border-radius: 5px;
    border: 1px solid #d0c89e;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-title {
        font-size: 1.8rem;
    }
}