/* =======================================================
   BASE & RESET (Ultra-Luxury Minimalist Aesthetic)
========================================================== */
:root {
    --bg-black: #000000;
    --bg-graphite: #1a1a1c;
    --bg-dark-graphite: #0f0f11;
    --text-white: #f5f5f7;
    --text-silver: #a1a1a6;
    --accent-gold: #c6a87c;
    --accent-white-titanium: #f0f0f5;
    --glass-bg: rgba(26, 26, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.62;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.container-sm { max-width: 800px; }

/* Seletor de cor (cards) */
.seletor-cor-luxo {
    width: 100%;
    padding: 14px 2.25rem 14px 16px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(0, 113, 227, 0.45);
    border-radius: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 1em;
}
.seletor-cor-luxo:focus {
    outline: none;
    border-color: #5ac8fa;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.25);
}

h1, h2, h3, h4 { letter-spacing: -0.025em; font-weight: 600; }
.section-title { font-size: clamp(2.125rem, 5vw, 3.25rem); text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); color: var(--text-white); font-weight: 600; }
.section-subtitle { text-align: center; color: var(--text-silver); font-size: 1.1rem; margin-top: -2.5rem; margin-bottom: 3rem;}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2rem; font-size: 1.05rem; font-weight: 500;
    border-radius: 40px; text-decoration: none; cursor: pointer;
    border: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.primary-btn { background: var(--text-white); color: var(--bg-black); }
.primary-btn:hover { background: var(--accent-gold); color: var(--bg-black); transform: scale(1.03); }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 0 5%;
    height: 72px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo { font-size: 1.25rem; font-weight: 400; color: var(--text-white); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.logo i { font-size: 1.5rem; }
.logo span { font-weight: 600; letter-spacing: -0.5px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: var(--text-silver); text-decoration: none; font-size: 0.95rem; font-weight: 400; display: flex; align-items: center; gap: 6px; transition: all 0.3s ease; }
.nav-link i { font-size: 1.1rem; }
.nav-link:hover { color: var(--text-white); }

.nav-search-container { position: relative; display: flex; align-items: center; background: rgba(255, 255, 255, 0.08); padding: 0.5rem 1rem; border-radius: 20px; transition: all 0.3s ease; }
.nav-search-container:focus-within { background: rgba(255, 255, 255, 0.12); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1); }
.nav-search-container i { color: var(--text-silver); font-size: 1rem; margin-right: 8px; }
.nav-search-container input { background: transparent; border: none; color: var(--text-white); font-size: 0.9rem; outline: none; width: 140px; transition: width 0.3s ease; }
.nav-search-container input:focus { width: 180px; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-vip-btn { color: var(--text-white); text-decoration: none; font-size: 0.85rem; font-weight: 600; background: rgba(255, 255, 255, 0.1); border: 1px solid var(--glass-border); padding: 0.6rem 1.4rem; border-radius: 30px; transition: all 0.3s ease; letter-spacing: 0.5px; }
.nav-vip-btn:hover { background: var(--text-white); color: var(--bg-black); transform: translateY(-2px); }

.mobile-toggle { display: none; background: transparent; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }

/* HERO BANNER — Two-column layout */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--bg-black);
    overflow: hidden;
    padding-top: 88px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 48fr 52fr;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 4rem;
    min-height: 100svh;
}

/* Left column: text */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    text-align: left;
    pointer-events: all;
}

/* Right column: Spline */
.spline-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    pointer-events: none;
}

/* gradient fade on the left edge so Spline blends into black text area */
.spline-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-black), transparent);
    z-index: 2;
    pointer-events: none;
}

.spline-container spline-viewer {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.hero-content .btn { pointer-events: auto; }
.hero-title { line-height: 1.1; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); letter-spacing: -1.5px; background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 50%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 4px 15px rgba(255,255,255,0.05); }
.serif-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 600; font-style: normal; }
.sans-title { font-family: 'Inter', sans-serif; font-size: clamp(1.2rem, 2.5vw, 2.2rem); font-weight: 400; letter-spacing: -0.5px;}
.highlight { background: linear-gradient(90deg, var(--text-white), var(--accent-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle-refined { font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--accent-gold); font-weight: 400; max-width: 600px; line-height: 1.5; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); animation-delay: 0.2s; }
.hero-body-text { font-size: clamp(0.85rem, 1.3vw, 1rem); color: var(--text-silver); font-weight: 300; max-width: 560px; line-height: 1.6; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); animation-delay: 0.3s; margin-top: -0.5rem; }
.hero .cta-wrapper { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); animation-delay: 0.4s; }
.btn { display: inline-block; padding: 1.1rem 2.2rem; border-radius: 50px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; text-decoration: none; font-size: 0.95rem; }

/* SCARCITY BAR */
.scarcity-bar { background: var(--bg-graphite); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 1rem 0; position: relative; z-index: 10; text-align: center; }
.scarcity-content { display: inline-flex; align-items: center; gap: 10px; color: var(--accent-gold); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.scarcity-content i { font-size: 1.2rem; }

/* PRODUCTS SECTION */
#produtos { scroll-margin-top: 96px; }
.products-section { padding: clamp(5rem, 12vw, 8rem) 0; background: var(--bg-black); position: relative; z-index: 5; opacity: 1 !important; transform: none !important; }
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    margin-top: 2rem; 
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.product-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); border-radius: 22px; padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); backdrop-filter: blur(10px); }
.product-card.product-card--filtered-out { display: none !important; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(198, 168, 124, 0.4); box-shadow: 0 10px 30px rgba(0,0,0,0.5); background: rgba(255, 255, 255, 0.04); }
.product-img-wrapper { width: 100%; height: 220px; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; background: #050505; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.9) contrast(1.1); transition: all 0.5s ease; }
.product-card:hover .product-img-wrapper img { filter: brightness(1) contrast(1.1); transform: scale(1.05); }

/* COLOR VARIANTS */
.color-variants { display: flex; gap: 8px; margin-bottom: 15px; justify-content: center; }
.color-swatch { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid rgba(255,255,255,0.1); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.color-swatch:hover { transform: scale(1.15); border-color: rgba(255,255,255,0.5); }
.color-swatch.active { border-color: var(--accent-gold); box-shadow: 0 0 10px rgba(198, 168, 124, 0.4); transform: scale(1.1); }

.product-card h3 { font-size: 1.3rem; color: var(--text-white); margin-bottom: 0.5rem; font-weight: 500; font-family: 'Inter', sans-serif;}
.product-price-card { font-size: 0.95rem; color: var(--text-silver); margin-bottom: 0.2rem; }
.product-price-pix { font-size: 1.8rem; color: var(--accent-gold); font-weight: 600; margin-bottom: 1.5rem; }
.product-price-pix span { font-size: 0.85rem; font-weight: 400; color: #4ade80; display: block; margin-top: 0.2rem; letter-spacing: 0.5px; text-transform: uppercase;}
.product-card .btn { width: 100%; font-size: 0.9rem; padding: 1rem; border-radius: 8px; }

/* STOCK HYPE — apenas dentro do formulário VIP */
.capture-section .cta-wrapper,
.form-wrapper .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    animation: none;
}
.stock-hype { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-silver); font-weight: 500; }
.pulse-dot { width: 8px; height: 8px; background-color: #ef4444; border-radius: 50%; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); animation: pulseRed 1.5s infinite; }
@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.urgency-note { font-size: 0.75rem; color: #ef4444; font-weight: 500; max-width: 400px; margin-top: 8px; line-height: 1.4; text-shadow: 0 0 10px rgba(239,68,68,0.3); }

/* QUEM SOMOS NÓS (substitui comparativo de transparência — mantém ritmo visual da seção) */
.about-us-section {
    padding: 8rem 0;
    background: var(--bg-black);
    position: relative;
    z-index: 3;
}
.about-us-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
    margin-top: 2rem;
}
.about-us-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    max-width: 38rem;
    margin-inline: auto;
}
.about-us-text {
    font-size: clamp(1rem, 1.9vw, 1.125rem);
    font-weight: 300;
    color: var(--text-silver);
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0;
}
.about-us-photo-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-graphite);
    box-shadow:
        0 0 0 0.5px rgba(255, 255, 255, 0.04) inset,
        0 24px 48px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.about-us-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.92) contrast(1.05);
}
.about-us-photo-wrap:hover .about-us-photo {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.02);
}

/* 5. TRUST DIFFERENTIALS */
.trust-section { position: relative; z-index: 3; background: var(--bg-dark-graphite); padding: 4rem 0; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; }
.trust-item { display: flex; align-items: center; gap: 15px; color: var(--text-silver); }
.trust-item i { font-size: 2rem; color: var(--accent-gold); }
.trust-item span { font-size: 0.95rem; font-weight: 400; line-height: 1.3; max-width: 150px; }

/* PROVA VISUAL DE OPERAÇÃO E ESTOQUE */
.operations-section { padding: 8rem 0; background: var(--bg-black); position: relative; z-index: 3; }
.operations-container { max-width: 1400px; }
.operations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.operation-card { display: flex; flex-direction: column; gap: 1.5rem; }
.operation-img-wrapper { 
    position: relative; border-radius: 12px; overflow: hidden; height: 450px; 
    border: 1px solid var(--glass-border); background: var(--bg-graphite);
}
.operation-img-wrapper img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: grayscale(40%) brightness(65%) contrast(115%);
    transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.operation-card:hover .operation-img-wrapper img {
    filter: grayscale(10%) brightness(85%) contrast(110%);
    transform: scale(1.03);
}
.operation-caption { 
    color: var(--text-silver); font-size: 0.95rem; font-weight: 300; line-height: 1.6; 
    padding: 0 0.5rem; border-left: 1px solid var(--accent-gold); padding-left: 1rem;
    letter-spacing: 0.2px;
}

/* 3. COMO FUNCIONA */
.steps-section { padding: 8rem 0; background: var(--bg-graphite); position: relative; z-index: 3; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.step-card { background: var(--bg-black); border: 1px solid var(--glass-border); border-radius: 20px; padding: 3rem 2.5rem; position: relative; transition: transform 0.4s ease; }
.step-card:hover { transform: translateY(-5px); }
.step-number { font-size: 3.5rem; font-weight: 800; color: rgba(255, 255, 255, 0.03); position: absolute; top: 20px; right: 20px; line-height: 1; }
.step-icon { font-size: 2.5rem; color: var(--text-white); margin-bottom: 2rem; }
.step-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-white); }
.step-card p { color: var(--text-silver); font-size: 0.95rem; line-height: 1.6; }

/* 4. PROVA SOCIAL SLIM */
.testimonials-slim-section { padding: 6rem 0; background: var(--bg-dark-graphite); position: relative; z-index: 3; overflow: hidden; }
.slim-carousel-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; display: flex; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.slim-marquee-track { display: flex; width: fit-content; animation: scrollSlimMarquee 40s linear infinite; }
.slim-marquee-track:hover { animation-play-state: paused; }
.slim-marquee-group { display: flex; align-items: center; justify-content: space-around; }
.slim-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem; width: 25vw; min-width: 320px; margin-right: 2rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); white-space: normal; transition: border-color 0.3s ease;}
.slim-card:hover { border-color: rgba(255,255,255,0.15); }
.slim-header { display: flex; align-items: center; gap: 12px; }
.slim-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--glass-border); }
.slim-header h4 { font-size: 0.95rem; font-weight: 600; margin: 0; color: var(--text-white); }
.slim-stars { color: var(--accent-gold); font-size: 0.8rem; letter-spacing: 2px; }
.slim-quote { font-size: 1rem; font-style: italic; color: var(--text-white); margin: 0; }
@keyframes scrollSlimMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 6. SEÇÃO DE CAPTURA */
.capture-section { padding: 8rem 5%; display: flex; justify-content: center; position: relative; z-index: 3; background: radial-gradient(circle at center, var(--bg-graphite) 0%, var(--bg-black) 100%); }
.form-wrapper { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); border-radius: 24px; padding: 4rem 3rem; max-width: 500px; width: 100%; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.form-wrapper h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.form-wrapper p { color: var(--text-silver); font-size: 0.95rem; margin-bottom: 2.5rem; }
.vip-form { display: flex; flex-direction: column; gap: 1.2rem; }
.input-modern-group input { width: 100%; padding: 1.2rem; background: var(--bg-black); border: 1px solid var(--glass-border); border-radius: 12px; color: var(--text-white); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; outline: none; }
.input-modern-group input:focus { border-color: var(--text-white); }
.submit-btn { width: 100%; margin-top: 1rem; background: var(--text-white); color: var(--bg-black); font-weight: 600; }
.security-note { font-size: 0.8rem !important; color: #666 !important; margin-top: 1.5rem !important; margin-bottom: 0 !important; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* 7. FAQ */
.faq-section { padding: 6rem 0; background: var(--bg-dark-graphite); position: relative; z-index: 3; }
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { background: var(--bg-black); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; }
.accordion-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; transition: background 0.3s ease; }
.accordion-header:hover { background: rgba(255, 255, 255, 0.02); }
.accordion-header h3 { font-size: 1.1rem; font-weight: 500; margin: 0; }
.accordion-header i { font-size: 1.2rem; color: var(--text-silver); transition: transform 0.3s ease; }
.accordion-item.active .accordion-header i { transform: rotate(45deg); color: var(--text-white); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); }
.accordion-item.active .accordion-content { max-height: 500px; }
.accordion-content p { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-silver); font-size: 0.95rem; line-height: 1.6; }

/* FOOTER */
footer { padding: 4rem 0; background: var(--bg-black); text-align: center; border-top: 1px solid var(--glass-border); position: relative; z-index: 3; }
footer .logo { justify-content: center; margin-bottom: 1.5rem; color: var(--text-silver); }
footer p { color: #555; font-size: 0.85rem; margin-bottom: 0.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =======================================================
   8. WIDGET PROVA SOCIAL (TOAST LUXO)
========================================================== */
.sales-toast {
    position: fixed;
    bottom: 28px;
    left: 24px;
    max-width: min(380px, calc(100vw - 48px));
    background: rgba(28, 28, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow:
        0 0 0 0.5px rgba(255, 255, 255, 0.06) inset,
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-120%, 0, 0) scale(0.96);
    transition:
        opacity 0.55s cubic-bezier(0.32, 0.72, 0, 1),
        transform 0.65s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform, opacity;
}

.sales-toast.show {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.sales-toast.hide-out {
    opacity: 0;
    transform: translate3d(-24px, 0, 0) scale(0.98);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 1, 1),
        transform 0.5s cubic-bezier(0.4, 0, 1, 1);
}

.toast-icon {
    color: var(--accent-gold);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.toast-message {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.45;
    margin: 0;
}

/* =======================================================
   10. PARTNERS LOGO MARQUEE
========================================================== */
.partners-section {
    padding: 5rem 0 3rem;
    background: var(--bg-black);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.partners-title {
    font-size: 1rem;
    color: var(--text-silver);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 4rem;
    color: var(--text-white);
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    cursor: default;
    user-select: none;
}

.partner-logo i {
    font-size: 1.8rem;
    color: var(--brand-color, var(--text-white));
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .operations-grid { grid-template-columns: 1fr; gap: 4rem; }
    .operation-img-wrapper { height: 350px; }
}

@media (max-width: 768px) {
    /* Hero mobile: Spline as absolute background inside hero */
    .hero {
        position: relative;
        min-height: 100svh; /* svh = stable viewport height, no jump from browser bar */
        overflow: hidden;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 2rem 5% 3rem;
        gap: 0;
        position: relative;
        z-index: 2;
        min-height: calc(100svh - 72px);
        align-content: center;
    }
    /* Spline pinned inside hero — NOT fixed to viewport */
    .spline-container {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        clip-path: none;
        border-radius: 0;
        pointer-events: none;
        opacity: 0.4;
    }
    .spline-container::before {
        display: none;
    }
    .hero-content {
        order: 1;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 3;
    }
    /* Dark overlay — absolute inside hero, not fixed */
    .hero-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.35) 50%,
            rgba(0,0,0,0.6) 100%
        );
        z-index: 1;
        pointer-events: none;
    }
    .cta-wrapper { align-items: center; }

    .about-us-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-us-copy {
        order: 1;
    }
    .about-us-photo-wrap {
        order: 2;
    }

    /* Force products to always be visible on mobile */
    .products-section {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    .products-grid {
        grid-template-columns: 1fr !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .product-card {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .sales-toast {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    .toast-message {
        font-size: 0.8rem;
    }

    /* Mobile Menu styles */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
        align-items: flex-start;
        border-bottom: 1px solid var(--glass-border);
        backdrop-filter: blur(25px);
        z-index: 999;
    }
    .nav-links.active { display: flex; animation: slideDown 0.4s ease forwards; }
    .nav-search-container { width: 100%; }
    .nav-search-container input { width: 100% !important; font-size: 1rem; }
    .mobile-toggle { display: block; }
    .nav-vip-btn { display: none; }
}

/* Utils */
.hidden { display: none !important; }
.hidden-search { display: none !important; }

#form-message.message {
    display: block;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}
#form-message.message--ok {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #a7f3d0;
}
#form-message.message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

#captura, #faq { scroll-margin-top: 88px; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
