/* =========================================================================
   MESA MULTIDIMENSIONAL ARCTU - ULTRA MODERN PREMIUM
   ========================================================================= */

:root {
    /* Quantum Dark Aesthetics */
    --bg-base: #030305;
    --bg-surface: #0a0a0f;
    --bg-glass: rgba(15, 15, 23, 0.4);

    /* Vibrant Electric Mysticism */
    --neon-purple: #7000ff;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff0055;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Colors */
    --text-primary: #ffffff;
    --text-secondary: #9aa0af;
    --text-accent: #00f0ff;

    /* Specifics */
    --radius-lg: 24px;
    --radius-md: 16px;
    --box-size: 472px;
    /* Fixed user requirement */
}

/* =========================================================================
   CUSTOM SCROLLBAR (PREMIUM LOOK)
   ========================================================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-cyan));
    border-radius: 100px;
    border: 3px solid var(--bg-base);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    width: 100%;
    /* Custom Mystical Cursor: A small energy star */
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='fill:white'><text x='0' y='24' font-size='24'>✨</text></svg>"), auto;
}

main {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================================================
   BACKGROUND NOISE & GEOMETRY
   ========================================================================= */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    opacity: 0.5;
}

.spiritual-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(112, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 0, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.5;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Logo / Nav Styling */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logo {
    height: 60px;
    /* Elegant size */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.title-main {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.highlight-text {
    color: #fff;
    font-size: 1.25rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(0, 240, 255, 0.05);
}

.center-badge {
    margin: 0 auto 1.5rem auto;
    display: block;
    max-width: max-content;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    /* Highlighted background */
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    animation: btn-pulse 2s infinite ease-in-out;
    /* Continuous animation */
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2), 0 5px 15px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.8;
    margin-top: 4px;
}

.btn-mammoth {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.15);
}

/* =========================================================================
   HERO SECTION (ULTRA MODERN)
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 6rem;
    z-index: 1;
    height: auto;
    overflow: hidden;
    /* Ensure containership */
}

.hero-section>* {
    position: relative;
    z-index: 10;
}

.hero-ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Force orbs behind everything */
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: orb-drift 30s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-purple), transparent);
    top: -20%;
    left: -20%;
    animation-duration: 35s;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    bottom: -15%;
    right: -10%;
    animation-duration: 45s;
    animation-delay: -5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    top: 20%;
    left: 30%;
    opacity: 0.15;
    animation-duration: 40s;
    animation-delay: -10s;
}

@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(150px, -50px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description-box {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}

.hero-description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-cyan));
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.hero-breathe {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Hero Visuals (Rings) */
.hero-visual-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-rings {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: spin 40s linear infinite;
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation: spin 50s linear infinite reverse;
    border-color: rgba(112, 0, 255, 0.3);
}

.ring-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1), transparent);
}

.hero-center-img {
    position: relative;
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 240, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =========================================================================
   FIXED MESA IMAGES (472x472 STRICTLY ENFORCED)
   ========================================================================= */
.split-section {
    padding: 8rem 0;
    position: relative;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.reverse-on-mobile .image-col {
    order: 1;
}

.reverse-on-mobile .text-col {
    order: 2;
}

/* The explicit specification for imagery */
.fixed-img-container {
    width: var(--box-size);
    height: var(--box-size);
    margin: 0 auto;
    /* Center it */
    position: relative;
    border-radius: var(--radius-lg);
    background: #000;
}

.fixed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    /* inherit the container's radius */
    display: block;
    position: relative;
    z-index: 2;
}

.energetic-shadow::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    filter: blur(30px);
    opacity: 0.3;
    border-radius: calc(var(--radius-lg) + 10px);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.fixed-img-container:hover::before {
    opacity: 0.5;
}

.pulse-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--neon-cyan), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: 3;
    pointer-events: none;
}

/* =========================================================================
   CARDS & LISTS
   ========================================================================= */
.glass-panel {
    background: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.benefits-card {
    background: var(--bg-glass);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.modern-list {
    list-style: none;
}

.modern-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.modern-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.modern-grid-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-grid-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 2px solid var(--neon-purple);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.modern-grid-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.highlight-box-modern {
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent);
    border-left: 4px solid var(--neon-cyan);
    color: var(--text-primary);
    font-style: italic;
    font-weight: 300;
}

/* =========================================================================
   VIDEO
   ========================================================================= */
.video-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.video-player-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    filter: blur(40px);
    opacity: 0.15;
    border-radius: calc(var(--radius-lg) + 20px);
    z-index: -1;
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.15;
        transform: scale(0.98);
    }

    to {
        opacity: 0.3;
        transform: scale(1.02);
    }
}

.video-container-modern {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: url('https://img.youtube.com/vi/qS2FInJkBe0/maxresdefault.jpg') center/cover;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.5s ease;
}

.video-overlay:hover {
    background: rgba(3, 3, 5, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.video-overlay:hover .play-btn-modern {
    transform: scale(1.15);
    background: var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple);
}

.video-glass {
    text-align: center;
}

.video-label {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
}

.video-sub-label {
    margin-top: 0.5rem;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.video-overlay:hover .video-sub-label {
    opacity: 1;
    transform: translateY(0);
}

.play-btn-modern {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
}

/* =========================================================================
   RESULTS
   ========================================================================= */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.result-card {
    background: var(--bg-glass);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.result-card .icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.result-card p {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

.result-card:hover {
    background: rgba(112, 0, 255, 0.1);
    border-color: rgba(112, 0, 255, 0.3);
    transform: translateY(-5px);
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta-section {
    padding: 10rem 0;
    position: relative;
    text-align: center;
}

.cta-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-signoff {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 1px;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.border-glow {
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.inline-block {
    display: inline-block;
}

.rounded {
    border-radius: var(--radius-md);
}

.p-3 {
    padding: 1rem 1.5rem;
}

.text-white {
    color: #fff;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer-modern {
    background: #000;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--neon-cyan);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.disclaimer-modern {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--radius-md);
}

/* Footer Carousel */
.footer-carousel-container {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
    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);
}

.footer-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-footer 30s linear infinite;
}

.footer-carousel-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.footer-carousel-track img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes scroll-footer {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* =========================================================================
   ANIMATIONS (Triggered via JS)
   ========================================================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-slide {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-float {
    animation: float-modern 8s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.animate-float.delayed {
    animation-delay: 2s;
}

@keyframes float-modern {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.is-visible.animate-fade-up,
.is-visible .animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.is-visible.animate-fade-slide,
.is-visible .animate-fade-slide {
    opacity: 1;
    transform: translateX(0);
}

.is-visible.animate-fade-slide-right,
.is-visible .animate-fade-slide-right {
    opacity: 1;
    transform: translateX(0);
}

.is-visible.animate-zoom,
.is-visible .animate-zoom {
    opacity: 1;
    transform: scale(1);
}

.is-visible.animate-float {
    opacity: 1;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 1024px) {
    .split-container {
        gap: 3rem;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding-top: 5rem;
    }

    .hero-description-box {
        text-align: left;
    }

    .hero-center-img {
        width: 280px;
        height: 280px;
    }

    .ring-1 {
        width: 380px;
        height: 380px;
    }

    .ring-2 {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    :root {
        --box-size: 100%;
        /* Cannot fix to 472px on mobile screens smaller than 472px */
    }

    .fixed-img-container {
        max-width: 472px;
        /* Make sure it degrades gracefully on mobile */
        aspect-ratio: 1/1;
        height: auto;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .reverse-on-mobile .image-col {
        order: -1;
    }

    .text-col {
        text-align: left;
    }

    .modern-grid-list {
        grid-template-columns: 1fr;
    }

    .animate-fade-slide,
    .animate-fade-slide-right {
        transform: translateY(30px);
    }

    .split-section {
        padding: 5rem 0;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
    }

    .hero-image-rings {
        width: 300px;
        height: 300px;
    }

    .ring-1 {
        width: 280px;
        height: 280px;
    }

    .ring-2 {
        width: 320px;
        height: 320px;
    }

    .hero-center-img {
        width: 180px;
        height: 180px;
    }

    .nav-logo {
        height: 45px;
    }
}

@media (max-width: 380px) {
    .hero-image-rings {
        width: 260px;
        height: 260px;
    }
    
    .ring-1 {
        width: 240px;
        height: 240px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .hero-center-img {
        width: 150px;
        height: 150px;
    }
}

/* Ticker Banner */
.ticker-banner {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 20;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================= */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 2;
}

.whatsapp-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: 1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* =========================================================================
   LGPD COOKIE BANNER
   ========================================================================= */
.lgpd-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 380px;
    max-width: calc(100vw - 120px);
    /* Avoid overlapping whatsapp on mobile */
    padding: 1.5rem;
    border-radius: var(--radius-md);
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lgpd-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.lgpd-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.lgpd-link {
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}

.lgpd-btn {
    width: 100%;
    padding: 0.8rem !important;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* =========================================================================
   PRIVACY POLICY MODAL
   ========================================================================= */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.privacy-modal.show {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.privacy-modal.show .privacy-modal-content {
    transform: scale(1);
}

.privacy-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal-btn:hover {
    color: var(--neon-pink);
}

.privacy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-modal-body p {
    margin-bottom: 1rem;
}

.privacy-modal-body strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

/* Scrollbar para o Modal */
.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .lgpd-banner {
        left: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        max-width: none;
        padding: 1.2rem;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
}

/* =========================================================================
   GOOGLE TRANSLATE CUSTOM FLAGS
   ========================================================================= */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.flag-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    opacity: 0.6;
    filter: grayscale(40%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-btn img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.flag-btn:hover {
    transform: scale(1.15);
    opacity: 1;
    filter: grayscale(0%);
}

/* Hide Google Translate completely */
.skiptranslate, 
#goog-gt-tt, 
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}