/* ==========================================================================
   MultirepuestosRG V11 — Nueva Identidad + Paleta Rojo/Naranja/Dorado
   ========================================================================== */

:root {
    --orange: #FF5A1F;
    --orange-dark: #E04D1A;
    --orange-glow: rgba(255,90,31,0.15);
    --orange-glow-strong: rgba(255,90,31,0.4);
    --red: #DC2626;
    --red-glow: rgba(220,38,38,0.25);
    --gold: #F5A623;
    --gold-rg: #FFD22E;
    --gold-light: #FFD07A;
    --dark: #09090E;
    --dark-card: #111118;
    --dark-lighter: #1A1A25;
    --light: #FAFBFC;
    --light-alt: #F1F3F5;
    --text: #0F1419;
    --text-mid: #5B6370;
    --text-dim: #8B95A2;
    --border: rgba(255,255,255,0.06);
    --border-light: #E5E8EB;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', var(--font);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; font-family: var(--font); border: none;
    cursor: pointer; transition: all 0.4s var(--ease); position: relative;
}
.btn--primary { background: var(--orange); color: #FFF; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 12px 32px var(--orange-glow-strong); }
.btn--glow { box-shadow: 0 0 40px var(--orange-glow-strong), 0 4px 15px var(--orange-glow); }
.btn--outline { background: transparent; color: #FFF; border: 1.5px solid rgba(255,255,255,0.2); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--dark { background: #000; color: #FFF; }
.btn--dark:hover { background: #222; transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn--wa-big {
    background: #25D366; color: #FFF; padding: 18px 48px;
    font-size: 1.15rem; font-weight: 700;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn--wa-big:hover { background: #1EB954; transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 48px rgba(37,211,102,0.45); }

/* ========== NAVBAR ========== */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 9999;
    padding: 10px 0;
    background: rgba(9,9,14,0.7);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s var(--ease);
}
.nav.scrolled {
    background: rgba(9,9,14,0.96);
    padding: 8px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,90,31,0.15);
}
.nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo — transparent, no white box */
.nav__logo {
    flex-shrink: 0;
    display: flex; align-items: center;
    text-decoration: none;
    padding: 0;
    background: transparent;
    border: none;
}
.nav__logo img {
    height: 52px; width: auto; object-fit: contain;
    transition: all 0.4s var(--ease);
    display: block;
    filter: drop-shadow(0 0 12px rgba(255,90,31,0.45));
}
.nav.scrolled .nav__logo img { height: 40px; }
.nav__logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 20px rgba(255,90,31,0.7));
}

.nav__menu { display: flex; gap: 28px; }
.nav__menu a {
    font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.6);
    position: relative;
}
.nav__menu a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--orange); transition: width 0.3s var(--ease); border-radius: 1px;
}
.nav__menu a:hover { color: #FFF; }
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: var(--orange); color: #FFF;
    border-radius: 50px; font-weight: 600; font-size: 0.88rem;
    flex-shrink: 0;
}
.nav__cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-glow-strong); }
.nav__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span { width: 24px; height: 2px; background: #FFF; border-radius: 2px; transition: 0.3s; }

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
    background: radial-gradient(ellipse at 15% 40%, #1c0808 0%, #0D0308 30%, #09090E 65%, #0A0A12 100%);
    padding: 130px 24px 80px;
}
.hero__particles {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__glow {
    position: absolute; width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, rgba(255,90,31,0.12) 40%, transparent 70%);
    top: -250px; right: -200px; filter: blur(90px); z-index: 0;
    animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero__glow--2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,162,35,0.12) 0%, transparent 70%);
    top: auto; bottom: -200px; left: -150px; right: auto;
    animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.75; transform: scale(1.2); }
}
.hero__content {
    position: relative; z-index: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    max-width: 860px;
}
/* Hero Brand Showcase — LARGE BRAND LOGO SHOWCASE */
.hero__brand-showcase {
    margin-bottom: 8px;
    display: flex; justify-content: center; align-items: center;
    width: 100%;
}
.hero__brand-logo {
    width: clamp(280px, 42vw, 480px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255,90,31,0.45)) drop-shadow(0 0 60px rgba(220,38,38,0.3));
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
    animation: heroLogoFloat 4.5s ease-in-out infinite alternate;
}
.hero__brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 45px rgba(255,90,31,0.75)) drop-shadow(0 0 90px rgba(220,38,38,0.5));
}
@keyframes heroLogoFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.25);
    color: #FFB3B3; padding: 9px 24px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.6); }
    50% { box-shadow: 0 0 0 10px transparent; }
}
.hero__title {
    font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 800; color: #FFF; line-height: 1.05; letter-spacing: -1px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--gold-rg) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 640px; line-height: 1.8;
}
.hero__sub strong { color: rgba(255,255,255,0.88); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__trust {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px;
}
.trust-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    padding: 9px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px); transition: all 0.3s var(--ease);
}
.trust-pill i { color: var(--orange); font-size: 0.85rem; }
.trust-pill:hover { border-color: var(--orange); color: rgba(255,255,255,0.9); }

/* Scroll indicator */
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator {
    width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
    width: 4px; height: 8px; background: var(--orange); border-radius: 2px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ========== LOGO MARQUEE ========== */
.marquee {
    background: #07070B; padding: 14px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
    display: flex; align-items: center; gap: 0;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap; width: max-content;
}
.marquee__logo {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 28px; flex-shrink: 0;
}
.marquee__logo img {
    height: 38px; max-width: 120px; object-fit: contain;
    background: #FFFFFF; border-radius: 8px; padding: 6px 14px;
    filter: none !important; opacity: 1 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.marquee__logo:hover img { transform: scale(1.08); }
.marquee__sep {
    padding: 0 24px; font-size: 0.62rem; font-weight: 800;
    color: var(--orange); letter-spacing: 3px; text-transform: uppercase;
    flex-shrink: 0; opacity: 0.75;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== STATS STRIP ========== */
.stats-strip {
    background: linear-gradient(135deg, #0D0303 0%, #150606 40%, #0D0D16 100%);
    padding: 70px 0; border-bottom: 1px solid rgba(220,38,38,0.12);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat {
    text-align: center; padding: 32px 20px; position: relative;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }
.stat__number {
    font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--gold-rg) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.stat__label {
    font-size: 0.88rem; color: rgba(255,255,255,0.4); font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========== SECTIONS ========== */
.section { padding: 110px 0; }
.section--dark { background: var(--dark); color: #FFF; }
.tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 700; color: var(--orange);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.title-xl {
    font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.section--dark .title-xl { color: #FFF; }
.subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; }
.section--dark .subtitle { color: rgba(255,255,255,0.4); }
.section__header { margin-bottom: 56px; }

/* ========== DISTRIBUIDORES AUTORIZADOS ========== */
.dist-section {
    background: linear-gradient(160deg, #0a0a12 0%, #111118 100%);
    color: #FFF; position: relative; overflow: hidden;
}
.dist-bg-glow {
    position: absolute; width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(255,90,31,0.06) 0%, transparent 60%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
}
.dist-section .section__header .title-xl { color: #FFF; }
.dist-section .section__header .subtitle { color: rgba(255,255,255,0.5); }

.dist-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 40px;
}
.dist-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius); padding: 0; overflow: hidden;
    transition: all 0.5s var(--ease); position: relative;
}
.dist-card:hover {
    background: rgba(255,255,255,0.06); border-color: rgba(255,90,31,0.35);
    transform: translateY(-8px); box-shadow: 0 24px 60px rgba(255,90,31,0.12);
}
.dist-card__ribbon {
    background: linear-gradient(90deg, var(--orange) 0%, #FF8A50 100%);
    color: #FFF; text-align: center; padding: 8px 20px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
}
.dist-card__logo {
    padding: 24px 20px;
    display: flex; align-items: center; justify-content: center;
    min-height: 105px;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dist-card__logo img {
    max-height: 54px; max-width: 170px; object-fit: contain;
    filter: none !important; opacity: 1 !important;
    transition: transform 0.4s var(--ease);
}
.dist-card:hover .dist-card__logo img { transform: scale(1.06); }
.dist-card:hover .dist-card__logo img { opacity: 1; transform: scale(1.06); }

/* Maxima special card */
.dist-card--maxima {
    border-color: rgba(220, 38, 38, 0.2);
}
.dist-card--maxima:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 24px 60px rgba(220, 38, 38, 0.15);
}
.dist-card__ribbon--maxima {
    background: linear-gradient(90deg, #DC2626 0%, #EF4444 100%);
}
.dist-card__logo--maxima {
    background: #FFF;
    padding: 28px;
}
.dist-card__logo--maxima img {
    filter: none !important;
    opacity: 1 !important;
    max-height: 50px;
    max-width: 180px;
}
.dist-card--maxima:hover .dist-card__logo--maxima img { transform: scale(1.05); }
.dist-card__origin--maxima {
    color: #EF4444 !important;
}
.maxima-highlight {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(90deg, rgba(220,38,38,0.12) 0%, rgba(220,38,38,0.05) 100%);
    border: 1px solid rgba(220,38,38,0.25);
    border-radius: 8px; padding: 8px 14px;
    font-size: 0.78rem; font-weight: 700;
    color: #EF4444; letter-spacing: 0.5px;
}
.maxima-highlight i { font-size: 0.85rem; }
.dist-card__body { padding: 24px 24px 28px; }
.dist-card__body h3 {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 800; color: #FFF; margin-bottom: 8px;
}
.dist-card__origin {
    font-size: 0.8rem; color: var(--orange); font-weight: 600;
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.dist-card__body > p:not(.dist-card__origin) {
    font-size: 0.88rem; color: rgba(255,255,255,0.45);
    line-height: 1.6; margin-bottom: 18px;
}
.dist-card__badges {
    display: flex; flex-direction: column; gap: 6px;
}
.dist-card__badges span {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5);
}
.dist-card__badges span i { color: #4CAF50; font-size: 0.8rem; }

/* Distribuidor CTA box */
.dist-cta { margin-top: 16px; }
.dist-cta__box {
    display: flex; align-items: center; gap: 28px;
    background: linear-gradient(135deg, rgba(255,90,31,0.1) 0%, rgba(245,166,35,0.05) 100%);
    border: 1px solid rgba(255,90,31,0.2); border-radius: var(--radius);
    padding: 32px 36px;
}
.dist-cta__icon {
    font-size: 2.5rem; color: var(--gold); flex-shrink: 0;
    animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}
.dist-cta__box h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
    color: #FFF; margin-bottom: 6px;
}
.dist-cta__box p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.dist-cta__box .btn { margin-left: auto; white-space: nowrap; flex-shrink: 0; }

/* ========== SERVICIOS ========== */
.services {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius); padding: 36px 28px;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.svc::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), #FF8A50);
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.svc:hover::after { transform: scaleX(1); }
.svc:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(255,90,31,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.svc__icon {
    width: 56px; height: 56px; background: var(--orange-glow); color: var(--orange);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px; transition: all 0.4s var(--ease);
}
.svc:hover .svc__icon { background: var(--orange); color: #FFF; transform: scale(1.1) rotate(-5deg); }
.svc h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #FFF; margin-bottom: 8px; }
.svc p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ========== WHY CHOOSE US ========== */
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-card {
    background: #FFF; border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 36px 28px;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.why-card:hover {
    background: #FFFDF9; border-color: var(--orange);
    transform: translateY(-8px); box-shadow: 0 20px 50px rgba(255,90,31,0.1);
}
.why-icon {
    width: 52px; height: 52px; background: var(--orange-glow); color: var(--orange);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 16px; transition: all 0.4s var(--ease);
}
.why-card:hover .why-icon { background: var(--orange); color: #FFF; }
.why-number {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, #FF8A50 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 12px;
}
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ========== STORY ========== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story__img { position: relative; }
.story__img img {
    border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.story__badge {
    position: absolute; bottom: -14px; right: -14px;
    background: var(--orange); color: #FFF; padding: 14px 24px;
    border-radius: var(--radius-sm); font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 800; letter-spacing: 1px;
    box-shadow: 0 8px 24px var(--orange-glow-strong); border: 3px solid var(--dark);
}
.story__text p { color: rgba(255,255,255,0.5); margin-bottom: 16px; font-size: 1.02rem; }
.story__text strong { color: rgba(255,255,255,0.9); }
.story__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.feat {
    display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.55); padding: 12px 16px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xs);
}
.feat i { color: var(--orange); font-size: 1rem; }

/* ========== BRANDS ========== */
.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand {
    background: #FFFFFF; border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 24px 16px 20px; text-align: center; transition: all 0.4s var(--ease);
    cursor: default; position: relative; overflow: hidden;
}
.brand:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: var(--orange); }
.brand img {
    max-height: 48px; max-width: 120px; object-fit: contain; margin: 0 auto 12px;
    filter: none !important; opacity: 1 !important;
}
.brand__auth {
    background: linear-gradient(90deg, var(--orange) 0%, #FF8A50 100%);
    color: #FFF; font-size: 0.58rem; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 4px; margin-bottom: 14px;
}
.brand__auth i { font-size: 0.6rem; }
.brand__info h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; }
.brand__info p { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* ========== GALLERY ========== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal {
    position: relative; overflow: hidden; border-radius: var(--radius);
    cursor: pointer; aspect-ratio: 1/1;
}
.gal--featured {
    grid-column: span 1; grid-row: span 2; aspect-ratio: auto;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal:hover img { transform: scale(1.08); }
.gal__over {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 20px; color: #FFF; opacity: 0; transition: opacity 0.4s var(--ease);
}
.gal:hover .gal__over { opacity: 1; }
.gal__over span { font-weight: 600; font-size: 0.95rem; }
.gal__over i { opacity: 0.7; }

/* ========== TIKTOK ========== */
.tiktok-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.tiktok-embed-box {
    background: var(--dark-card); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 24px; min-height: auto;
    display: flex; justify-content: center; overflow: hidden;
}
.tiktok-profile-preview {
    width: 100%; display: flex; flex-direction: column; gap: 20px;
    background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.06); text-align: left;
}
.tiktok-profile__header { display: flex; align-items: center; gap: 16px; }
.tiktok-profile__avatar {
    width: 60px; height: 60px; border-radius: 50%; background: #111;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--orange); overflow: hidden; padding: 4px; flex-shrink: 0;
}
.tiktok-profile__avatar img { width: 100%; height: 100%; object-fit: contain; }
.tiktok-profile__info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #FFF; margin: 0; }
.tiktok-profile__info p { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin: 2px 0 0; }
.tiktok-profile__stats { display: flex; gap: 12px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
.t-stat { flex: 1; text-align: center; }
.t-stat strong { display: block; color: #FFF; font-size: 0.92rem; font-weight: 700; }
.t-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.tiktok-profile__desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.w-100 { width: 100%; justify-content: center; }
.tiktok-sidebar { display: flex; flex-direction: column; gap: 20px; }
.tiktok-card {
    background: #FFF; border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 36px; text-align: center;
}
.tiktok-card__icon {
    width: 60px; height: 60px; background: #000; color: #FFF; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 18px;
}
.tiktok-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.tiktok-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 18px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-btn {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 18px 14px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.82rem; color: #FFF; transition: all 0.35s var(--ease);
}
.social-btn i { font-size: 1.4rem; }
.social-btn:hover { transform: translateY(-4px); filter: brightness(1.1); }
.social-btn--tiktok { background: #010101; }
.social-btn--fb { background: #1877F2; }
.social-btn--maps { background: #EA4335; }
.social-btn--wa { background: #25D366; }

/* ========== MAP ========== */
.map-box { margin-top: 48px; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.map-bar {
    display: flex; align-items: center; justify-content: center; gap: 36px;
    padding: 20px 28px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06);
    border-top: none; border-radius: 0 0 var(--radius) var(--radius);
}
.map-info { display: flex; align-items: center; gap: 12px; }
.map-info i { font-size: 1.2rem; color: var(--orange); }
.map-info div { display: flex; flex-direction: column; }
.map-info strong { font-size: 0.85rem; color: #FFF; }
.map-info span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ========== CTA ========== */
.cta {
    padding: 120px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0D0303 0%, #130808 50%, #0D0D18 100%);
    color: #FFF;
}
.cta__glow {
    position: absolute; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(220,38,38,0.2) 0%, rgba(255,90,31,0.12) 40%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(100px); opacity: 0.6;
}
.cta__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.25);
    color: #FFB3B3; padding: 7px 20px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px; position: relative;
}
.cta__title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; margin-bottom: 16px; position: relative;
}
.cta__sub { font-size: 1.05rem; color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto 36px; position: relative; }

/* ========== FOOTER ========== */
.footer { background: #070710; color: #8B95A2; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__logo {
    height: 52px; width: auto; object-fit: contain;
    margin-bottom: 16px; display: block;
    background: transparent; padding: 0; border-radius: 0;
    filter: drop-shadow(0 0 12px rgba(255,90,31,0.4));
}
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.3); max-width: 260px; margin-bottom: 16px; }
.footer__dist-badges { display: flex; flex-direction: column; gap: 8px; }
.footer__dist-badges span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--orange);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: #FFF; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 0.88rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 8px; }
.footer__col a:hover { color: var(--orange); }
.footer__col i { font-size: 0.8rem; color: var(--orange); }
.footer__bottom { padding: 20px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* ========== WA FLOAT ========== */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; background: #25D366; color: #FFF;
    width: 62px; height: 62px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.8rem;
    box-shadow: 0 8px 28px rgba(37,211,102,0.45); z-index: 8000;
    transition: all 0.3s var(--ease); animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.14) !important; }
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
    justify-content: center; align-items: center;
}
.lightbox.active { display: flex; }
.lightbox__img {
    max-width: 92vw; max-height: 90vh; border-radius: var(--radius);
    box-shadow: 0 0 80px rgba(0,0,0,0.5); animation: lbIn 0.35s var(--ease);
    object-fit: contain;
}
.lightbox__close {
    position: absolute; top: 20px; right: 28px; color: #FFF; font-size: 2.5rem;
    background: none; border: none; cursor: pointer; z-index: 100000; line-height: 1;
    transition: 0.3s;
}
.lightbox__close:hover { color: var(--orange); transform: scale(1.15); }
@keyframes lbIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ========== ANIMATIONS ========== */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.show, .reveal-left.show, .reveal-right.show { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .dist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .story { grid-template-columns: 1fr; gap: 40px; }
    .brands { grid-template-columns: repeat(3, 1fr); }
    .tiktok-layout { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat:nth-child(2) { border-right: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav__menu {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(11,11,15,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav__menu.active { display: flex; }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .services { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gal--featured { grid-column: span 2; grid-row: span 1; }
    .brands { grid-template-columns: repeat(3, 1fr); }
    .story__features { grid-template-columns: 1fr; }
    .map-bar { flex-direction: column; gap: 14px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .section { padding: 80px 0; }
    .dist-grid { grid-template-columns: 1fr; }
    .dist-cta__box { flex-direction: column; text-align: center; }
    .dist-cta__box .btn { margin-left: 0; width: 100%; justify-content: center; }
}
/* ========== PRELOADER ========== */
.preloader {
    position: fixed; inset: 0; z-index: 999999;
    background: radial-gradient(ellipse at center, #1a0303 0%, #090909 60%);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader__inner {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    text-align: center;
}
.preloader__logo {
    width: 240px; height: auto; border-radius: 0; object-fit: contain;
    animation: preloaderPulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 35px rgba(220,38,38,0.5)) drop-shadow(0 0 70px rgba(255,90,31,0.35));
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(220,38,38,0.3)) drop-shadow(0 0 40px rgba(255,90,31,0.15)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 40px rgba(220,38,38,0.6)) drop-shadow(0 0 70px rgba(255,90,31,0.3)); }
}
.preloader__bar {
    width: 180px; height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden;
}
.preloader__fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--gold-rg));
    border-radius: 2px;
    transition: width 0.3s ease;
    animation: preloaderBar 2.2s ease-in-out forwards;
}
@keyframes preloaderBar {
    0%   { width: 0%; }
    30%  { width: 40%; }
    60%  { width: 70%; }
    85%  { width: 88%; }
    100% { width: 100%; }
}
.preloader__text {
    font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.35); letter-spacing: 3px; text-transform: uppercase;
}

@media (max-width: 480px) {
    .services { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .gal--featured { grid-column: span 1; }
    .brands { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .hero__trust { gap: 8px; }
    .trust-pill { font-size: 0.75rem; padding: 7px 14px; }
}
