:root {
    --primary-red: #E50914;
    --primary-red-hover: #BF0811;
    --primary-red-glow: rgba(229, 9, 20, 0.4);
    --dark-bg: #050505;
    --darker-bg: #000000;
    --panel-bg: rgba(17, 17, 17, 0.75);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbars styled with a high-end cyberpunk dark aesthetic */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 2px solid #050505;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-size: 17px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 50px);
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.8) 0%, rgba(229, 9, 20, 0.3) 100%);
    color: var(--text-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 var(--primary-red-glow), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.95) 0%, rgba(229, 9, 20, 0.45) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(229, 9, 20, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8) 0%, rgba(37, 211, 102, 0.3) 100%);
    color: var(--text-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(37, 211, 102, 0.45) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(37, 211, 102, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.text-red {
    color: var(--primary-red);
}

.text-white {
    color: var(--text-white);
}

.text-gray {
    color: var(--text-gray);
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 15px;
}

.text-xs {
    font-size: 13.5px;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.bg-red {
    background-color: var(--primary-red);
}

.bg-white {
    background-color: var(--text-white);
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.w-full {
    width: 100%;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-15 {
    gap: 15px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: clamp(6px, 1.2vw, 12px) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Scrolled Sticky Header Class */
.main-header.header-scrolled {
    padding: 6px 0;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-inner {
    min-height: 70px;
    transition: min-height 0.4s ease;
}

.main-header.header-scrolled .header-inner {
    min-height: 65px;
}

.logo-area {
    gap: clamp(10px, 1.2vw, 15px);
}

.logo-badge {
    display: block;
    position: relative;
    width: 150px;
    height: 40px;
}

.logo-img {
    height: 150px;
    width: auto;
    position: absolute;
    top: -46px;
    left: 0;
    z-index: 1000;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-header.header-scrolled .logo-img {
    height: 150px;
    top: -37px;
}

.service-divider {
    width: 1px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.main-header.header-scrolled .service-divider {
    height: 24px;
}

.service-24h {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    font-family: var(--font-body);
}

.service-24h__top {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 4px;
    transition: all 0.4s ease;
}

.main-header.header-scrolled .service-24h__top {
    font-size: 10px;
    letter-spacing: 1.2px;
}

.service-24h__bottom {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-top: 1px;
}

.service-24h__las {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1px;
    transition: all 0.4s ease;
}

.main-header.header-scrolled .service-24h__las {
    font-size: 12px;
}

.service-24h__number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 0.8;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.main-header.header-scrolled .service-24h__number {
    font-size: 34px;
}

.service-24h__horas {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 0.8;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
    transition: all 0.4s ease;
}

.main-header.header-scrolled .service-24h__horas {
    font-size: 18px;
}

.main-nav {
    display: none;
}

.main-nav ul {
    gap: clamp(15px, 2.5vw, 35px);
}

.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-cta {
    display: none;
}

.header-admin-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-admin-btn:hover {
    background: rgba(229, 9, 20, 0.45);
    border-color: rgba(229, 9, 20, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
    color: #fff;
}

@media (min-width: 768px) {
    .desktop-cta {
        display: inline-flex;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg .bg-image {
    width: calc(100% + 140px);
    height: 100%;
    object-fit: cover;
    object-position: 100% center;
    opacity: 0.95;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 8%, rgba(5, 5, 5, 0) 35%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.90) 0%, rgba(5, 5, 5, 0.70) 30%, rgba(5, 5, 5, 0.15) 65%, rgba(5, 5, 5, 0) 100%);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 200px;
        padding-bottom: 30px;
    }

    .hero-bg .bg-image {
        width: 100%;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        object-position: 80% center;
    }

    .hero-bg .overlay {
        background:
            linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 12%, rgba(5, 5, 5, 0) 45%),
            linear-gradient(180deg, rgba(5, 5, 5, 0.75) 0%, rgba(5, 5, 5, 0.50) 60%, rgba(5, 5, 5, 0.25) 100%);
    }

    .about-combined {
        margin-top: 20px;
        padding: 50px 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.hero-text {
    max-width: 740px;
    width: 100%;
}

.hero-title {
    font-size: clamp(58px, 6.5vw, 96px);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 17px;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.25);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.1);
    font-size: 18px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-red-glow);
}

.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.stat-desc-lines {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    gap: 2px;
}

.stat-desc-line {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.stat-desc-line.text-dim {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }
}

/* Visual Right Side */
.hero-visual {
    position: relative;
    width: 45%;
    min-height: 500px;
    display: none;
    justify-content: flex-end;
    align-items: center;
    padding-right: clamp(5px, 1.5vw, 20px);
}

@media (min-width: 992px) {
    .hero-visual {
        display: flex;
        width: 420px;
        flex-shrink: 0;
    }

    .hero-text {
        max-width: 820px;
    }

    .stat-desc-line {
        white-space: nowrap;
    }
}

.glow-circle {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 10;
    animation: electricFlicker 10s ease-in-out infinite;
    transform: scale(0.9);
}

/* Inner Glass Layer */
.hud-glass {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 0%, rgba(0, 0, 0, 0.7) 80%);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 25px rgba(229, 9, 20, 0.15), 0 0 35px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

/* SVG HUD Canvas */
.hud-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    transform-origin: center;
}

/* Outer HUD Ring (Clockwise) */
.hud-outer {
    transform-origin: 200px 200px;
    animation: rotateClockwise 35s linear infinite;
}

/* Radar ticks (Counter-Clockwise) */
.hud-ticks {
    transform-origin: 200px 200px;
    animation: rotateCounterClockwise 50s linear infinite;
}

/* Inner HUD Rings (Pulse scale and glow) */
.hud-inner {
    transform-origin: 200px 200px;
    animation: pulseHUD 4s ease-in-out infinite alternate;
}

/* Fast Sweeping Arc */
.hud-sweeper {
    transform-origin: 200px 200px;
    animation: rotateClockwise 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Center holographic typography */
.glow-text {
    text-align: center;
    color: var(--text-white);
    font-family: var(--font-heading);
    z-index: 5;
    position: absolute;
    pointer-events: none;
    transform: translateY(-5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glow-24 {
    font-size: 135px;
    line-height: 0.75;
    font-weight: 900;
    letter-spacing: -2px;
    color: #FFFFFF;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.75), 0 0 10px rgba(229, 9, 20, 0.2);
    margin-top: 10px;
}

.glow-horas {
    font-size: 38px;
    letter-spacing: 5px;
    color: var(--primary-red);
    font-weight: 900;
    margin-top: 5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(229, 9, 20, 0.25);
}

/* Wet Asphalt Neon Floor Reflection */
.hud-reflection {
    position: absolute;
    bottom: -60px;
    width: 260px;
    height: 45px;
    background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.5) 0%, rgba(229, 9, 20, 0.05) 55%, rgba(229, 9, 20, 0) 75%);
    filter: blur(8px);
    opacity: 0.75;
    z-index: 1;
    transform: scaleX(1.45);
    pointer-events: none;
    animation: reflectionPulse 4s ease-in-out infinite alternate;
}

/* Advanced Cyberpunk Animations */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulseHUD {
    0% {
        transform: scale(0.97);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.02);
        opacity: 1;
    }
}

@keyframes electricFlicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 0.95;
        filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.2));
    }

    19%,
    24%,
    55% {
        opacity: 0.88;
        filter: drop-shadow(0 0 4px rgba(229, 9, 20, 0.05));
    }

    21% {
        opacity: 0.92;
    }
}

@keyframes reflectionPulse {
    0% {
        opacity: 0.45;
        transform: scaleX(1.25) scaleY(0.9);
        filter: blur(10px);
    }

    100% {
        opacity: 0.85;
        transform: scaleX(1.55) scaleY(1.1);
        filter: blur(7px);
    }
}

.about-combined {
    position: relative;
    padding: 100px 0;
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ac-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ac-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 25%),
        linear-gradient(to top, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 25%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 40%, rgba(5, 5, 5, 0.1) 100%);
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .about-grid {
        display: grid;
        grid-template-columns: 42% 54%;
        justify-content: space-between;
        gap: 4%;
    }
}

.about-col-left {
    display: flex;
    flex-direction: column;
}

.about-text-top .section-title,
.about-text-bottom .section-title {
    font-size: clamp(44px, 5.5vw, 58px);
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.bottom-title {
    font-size: clamp(44px, 5.5vw, 60px);
    line-height: 1.05;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.about-desc {
    font-size: 17px;
    color: #CCCCCC;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 40px;
}

.premium-btn {
    border-radius: 8px;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
}

.premium-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.unified-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.unified-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 30%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.about-garage-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 0;
}

.play-btn-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-btn {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    padding-left: 4px;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 40px;
    height: 2px;
    background-color: white;
    transform: translateY(-50%);
    margin-right: 15px;
    opacity: 0.8;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(229, 9, 20, 0.7);
    border-color: var(--primary-red);
}

.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.stat-divider-v {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

.astat-item {
    flex: 1;
}

.astat-number {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 2px;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 400;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .premium-features-grid {
        margin-top: 130px;
    }
}



@media (max-width: 767px) {
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
}

.glass-feature-card {
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.glass-feature-card:hover {
    border-color: rgba(229, 9, 20, 0.5);
    background: rgba(15, 15, 15, 0.8);
}

.gfc-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    font-size: 24px;
    flex-shrink: 0;
}

.gfc-content {
    flex: 1;
}

.gfc-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.gfc-desc {
    font-size: 17px;
    color: #B5B5B5;
    line-height: 1.4;
    margin: 0;
}

/* Why Us Section */
.why-us {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    border: none;
}

.why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: luminosity;
}

.why-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.why-inner {
    position: relative;
    z-index: 2;
    gap: 60px;
    flex-direction: column;
}

@media (min-width: 992px) {
    .why-inner {
        flex-direction: row;
    }
}

.why-text {
    flex: 1;
}

.why-text .section-title {
    font-size: clamp(38px, 4.5vw, 52px);
    margin-bottom: 20px;
}

.why-desc {
    font-size: 17px;
    color: #CCCCCC;
}

.why-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

.why-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(229, 9, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Brands and CTA */
.brands-cta {
    padding: 40px 0 0;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.brands-cta-inner {
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    background-color: var(--panel-bg);
    border: 1px solid var(--panel-border);
}

@media (min-width: 768px) {
    .brands-cta-inner {
        flex-direction: row;
    }
}

.brands-area {
    flex: 2;
    padding: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-text {
    max-width: 150px;
    border-right: none;
    padding-right: 0;
}

@media (min-width: 768px) {
    .brands-text {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 20px;
    }
}

.brands-logos {
    gap: 25px;
    flex-wrap: wrap;
}

.brands-logos img {
    height: 32px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.brands-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.cta-area {
    flex: 1;
    padding: 30px;
    gap: 20px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .cta-area {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-top: none;
    }
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
}

/* Footer */
/* Footer Layout Replication */
.main-footer {
    position: relative;
    padding-top: 80px;
    background-color: #050505;
    border-top: none;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .footer-inner {
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }
}

.footer-contact {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-tag {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-family: var(--font-body);
}

.contact-title {
    color: var(--text-white);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    font-family: var(--font-body);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle i {
    color: #000000;
    font-size: 14px;
}

.contact-text {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-body);
}

.contact-text .text-red {
    color: var(--primary-red);
    font-weight: bold;
}

/* Social links (circles with outlines) */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* Right Side: Map Container */
.footer-map-container {
    flex: 1.6;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    height: 320px;
    min-height: 320px;
    background-color: #111111;
    transition: border-color 0.5s ease;
}

.footer-map-container:hover {
    border-color: rgba(229, 9, 20, 0.35);
}

@media (min-width: 992px) {
    .footer-map-container {
        height: auto;
    }
}

.footer-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
}

.footer-map-container:hover .footer-map-img {
    filter: brightness(0.95) contrast(1.05);
    transform: scale(1.04);
}

.overlay-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* Floating badge over map */
.map-floating-badge {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
    max-width: 320px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-map-container:hover .map-floating-badge {
    transform: translateY(-53%) scale(1.03);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.15), 0 5px 15px rgba(0, 0, 0, 0.4);
    border-color: rgba(229, 9, 20, 0.35);
}

@media (max-width: 576px) {
    .map-floating-badge {
        right: 15px;
        left: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
        padding: 12px 18px;
    }

    .footer-map-container:hover .map-floating-badge {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(229, 9, 20, 0.12);
    }
}

.badge-pin-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.badge-pin-wrapper i {
    color: var(--primary-red);
    font-size: 20px;
    animation: pinPulse 2s infinite ease-in-out;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
    letter-spacing: -0.2px;
}

.badge-desc {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-body);
}

/* Bottom bar replication */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 24px 0;
    background-color: #000000;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 576px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-body);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION & TOUCH TARGET OPTIONS (Mobile-First Parity)
   ========================================================================== */

/* Burger Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Burger Active Morph (X Shape) */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-red);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-red);
}

/* Mobile Slide-out Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.4) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1100;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85), inset 1px 0 0 rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(229, 9, 20, 0.25);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-drawer.active {
    right: 0;
}

.drawer-header {
    margin-bottom: 50px;
}

.drawer-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.drawer-close:hover {
    color: var(--primary-red);
}

.drawer-nav {
    flex-grow: 1;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    padding: 12px 0;
    border-left: 0 solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--text-white);
    padding-left: 10px;
    text-shadow: 0 0 12px rgba(229, 9, 20, 0.35);
}

.drawer-link.active {
    border-left: 3px solid var(--primary-red);
    padding-left: 15px;
}

/* Touch-Target Optimization: Ensure all action links have at least 44px height */
.drawer-nav ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Drawer Backdrop Blur Mask */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================= */
/* ACCORDION (VALORES CORPORATIVOS)          */
/* ========================================= */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
}

.acc-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.acc-item.active {
    border-color: rgba(229, 9, 20, 0.5);
    background: rgba(15, 15, 15, 0.8);
}

.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.acc-icon {
    color: var(--primary-red);
    font-size: 24px;
    width: 40px;
    flex-shrink: 0;
}

.acc-title {
    flex: 1;
    font-size: 24px;
    letter-spacing: 1px;
}

.acc-arrow {
    color: var(--text-gray);
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.active .acc-arrow {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-content-inner {
    padding: 0 24px 24px 64px;
    font-size: 17px;
    color: #CCCCCC;
    line-height: 1.6;
}

/* --- Servicios / Features Grid --- */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.features-carousel-track {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 20px 40px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    min-width: calc(100% - 40px);
    scroll-snap-align: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .carousel-card {
        min-width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .carousel-card {
        min-width: calc(30% - 15px);
    }
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary-red-glow);
}

.feature-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.fc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s ease;
    filter: grayscale(40%);
}

.feature-card:hover .fc-bg {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.fc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.fc-content {
    position: relative;
    z-index: 2;
    padding: 25px 20px;
    width: 100%;
}

.gap-15 {
    gap: 15px;
}

.fc-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-card:hover .fc-icon {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow);
}

.fc-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 3px;
    line-height: 1.2;
}

.fc-desc {
    font-size: 17px;
    color: #B5B5B5;
    margin: 0;
}

.fc-arrow {
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 18px;
}

.feature-card:hover .fc-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-red);
}

/* ==========================================================================
   BRANDS & CTA SECTION
   ========================================================================== */
.brands-cta {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.brands-cta-inner {
    background: #fdfdfd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
    .brands-cta-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .brands-area {
        width: 60% !important;
        flex: none !important;
    }

    .cta-area {
        width: 40% !important;
        min-width: unset !important;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-left: -10px;
        /* Slight overlap */
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    }
}

/* Left Side (Allies) */
.brands-area {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #fdfdfd;
}

.brands-title {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

/* Auto-Scrolling Carousel */
.brands-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands-carousel-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-brands 20s linear infinite;
}

.brands-carousel-track:hover {
    animation-play-state: paused;
}

.brand-item {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    color: #222;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}

.brand-item:hover {
    opacity: 1;
    color: #000;
    transform: scale(1.05);
}

.coopetran-logo {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: clamp(24px, 2.5vw, 30px);
}

.cotrasangil-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.cotrastame-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.transcolombia-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
}

.transcolombia-logo span {
    color: var(--primary-red);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }

    /* 50% width + half gap */
}

/* Right Side (Red CTA Card) */
.cta-area {
    background: var(--primary-red);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.cta-icon-wrapper {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-icon-wrapper i {
    color: var(--primary-red);
    font-size: 28px;
    transform: rotate(-15deg);
}

.cta-info {
    color: white;
}

.cta-subtitle {
    display: block;
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: var(--font-body);
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 26px;
    }
}

.cta-desc {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-body);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 99999;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    padding: 12px 16px clamp(12px, 3vh, 20px) 16px;
    pointer-events: none;
}

.mobile-sticky-bar .container-sticky {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    pointer-events: auto;
}

.mobile-sticky-bar .btn {
    flex: 1;
    height: 48px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm) !important;
}

@media (max-width: 767px) {
    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 85px !important;
    }

    .logo-img {    
        top: -53px !important;
    }

    .main-header.header-scrolled .logo-img {
        top: -51px !important;
    }

    /* Ajustes ultra-optimizados para evitar desborde en cabecera móvil */
    .main-header .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .logo-badge {
        width: 115px !important;
    }

    .logo-area {
        gap: 8px !important;
    }

    .service-divider {
        height: 22px !important;
        margin: 0 2px !important;
    }

    .service-24h__top {
        font-size: 10px !important;
        letter-spacing: 0.8px !important;
    }

    .service-24h__las {
        font-size: 11px !important;
    }

    .service-24h__number {
        font-size: 32px !important;
    }

    .service-24h__horas {
        font-size: 16px !important;
    }

    /* Rediseño de Estadísticas en Mobile (Grid 2x2 con transparencia original) */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        padding: 20px 15px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-top: none;
    }

    .about-stats .stat-divider-v {
        display: none;
    }
}