/* ==========================================================================
   SUPER VORTEC - ESTILOS INSPIRADOS EN EL TEMA PREMIUM DETAILX
   ========================================================================== */

/* Variables del Sistema de Diseño (Estilo Detailx) */
:root {
    --bg-primary: #18171a;      /* Carbón oscuro característico */
    --bg-secondary: #232225;    /* Gris secundario para secciones */
    --bg-tertiary: #1c1b1e;     /* Fondo de tarjetas y cajas */
    --accent-red: #ea0a0b;      /* Rojo deportivo */
    --accent-orange: #ff4311;   /* Naranja de telemetría */
    --text-white: #ffffff;
    --text-light: #e4e4e9;
    --text-muted: #949097;      /* Gris apagado */
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* Gradiente Principal Detailx */
    --gradient-sport: linear-gradient(226deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(24, 23, 26, 0.2) 0%, rgba(24, 23, 26, 0.9) 100%);
    
    /* Efecto Glassmorphism */
    --glass-bg: rgba(24, 23, 26, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Sombras y Luces */
    --glow-red: 0 0 30px rgba(234, 10, 11, 0.35);
    --glow-orange: 0 0 30px rgba(255, 67, 17, 0.35);
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.5);
    
    /* Transiciones */
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

/* Tipografías */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Contenedores */
.section-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 120px 24px;
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 34px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0px; /* Estilo Detailx cuadrado/angular */
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-sport);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(234, 10, 11, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    background: var(--gradient-sport);
    transform: translateY(-3px);
    box-shadow: var(--glow-red);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   BARRA DE NAVEGACIÓN
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

/* Estado al hacer Scroll */
.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logotipo */
.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-accent {
    color: var(--accent-red);
}

.logo-icon {
    font-size: 22px;
    color: var(--accent-orange);
    animation: pulse 1.5s infinite alternate;
}

/* Menú */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sport);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Botón Iniciar Sesión */
.btn-login {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    border: 2px solid transparent;
    border-image: var(--gradient-sport) 1;
    background: rgba(255, 67, 17, 0.03);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-login:hover {
    background: var(--gradient-sport);
    border-image: none;
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

/* Botón Menú Móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   SECCIÓN HERO (SPLIT LAYOUT CON ENFOQUE DETAILX)
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 160px 24px 80px 24px;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(234, 10, 11, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(255, 67, 17, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 70%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero-content-container {
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 650px;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(234, 10, 11, 0.08);
    border: 1px solid rgba(234, 10, 11, 0.2);
    color: var(--accent-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-text h1 .highlight {
    background: var(--gradient-sport);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Cuadro de Contacto Telefónico Tipo Detailx */
.hero-contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.phone-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-sport);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--glow-red);
}

.phone-text-wrap {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
}

.phone-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.phone-number:hover {
    color: var(--accent-orange);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Envoltura de Imagen del Vehículo */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-container {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 67, 17, 0.22) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
    animation: rotateGlow 12s linear infinite;
}

.hero-img {
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 24px;
    color: var(--text-muted);
}

/* ==========================================================================
   SECCIÓN DE CARACTERÍSTICAS (4 COLUMNAS DE ICONOS)
   ========================================================================== */

.features-icons-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.icon-feature-card {
    padding: 30px 20px;
    background: transparent;
    border-right: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.icon-feature-card:last-child {
    border-right: none;
}

.icon-feature-card:hover {
    background: rgba(255, 255, 255, 0.01);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 28px;
    color: var(--accent-red);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.icon-feature-card:hover .icon-wrap {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.icon-feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.icon-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.icon-feature-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon-feature-link i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.icon-feature-card:hover .icon-feature-link {
    color: var(--accent-orange);
}

.icon-feature-card:hover .icon-feature-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   BANNER DE IDENTIDAD DE MARCA (Estilo Detailx)
   ========================================================================== */

.brand-identity-banner {
    width: 100%;
    padding: 40px 0;
    background-color: #18171a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 67, 17, 0.06) 0%, rgba(255, 67, 17, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.brand-identity-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.brand-logo-container-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.brand-logo-left-part {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-logo-right-part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-logo-right-top {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-text-accent {
    color: #ea0a0b;
}

.brand-text-white {
    color: #ffffff;
    background: linear-gradient(to right, #ffffff 20%, #a3a1a6 40%, #ffffff 60%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
    display: inline-block;
}

.brand-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-neon-icon {
    color: #ff4311;
    font-size: clamp(28px, 5vw, 38px);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.brand-logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 700;
    color: #949097; /* gray as requested in image */
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 5px);
    margin-top: 6px;
    display: inline-block;
}

.brand-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #949097;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

/* Animaciones */
@keyframes textShimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 67, 17, 0.4));
        transform: scale(0.96);
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 67, 17, 0.9));
        transform: scale(1.04);
    }
}

/* ==========================================================================
   SPLIT PROMO BANNER (Dos Columnas Con Imagen de Fondo)
   ========================================================================== */

.split-promo-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.promo-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.promo-box {
    flex: 1;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    overflow: hidden;
}

.promo-left {
    border-right: 1px solid var(--border-color);
}

.promo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.promo-box:hover .promo-bg-image {
    transform: scale(1.08);
}

.promo-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(24, 23, 26, 0.1) 0%, rgba(24, 23, 26, 0.85) 100%);
    z-index: 2;
}

.promo-content {
    position: relative;
    z-index: 5;
    max-width: 480px;
}

.promo-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.promo-content h3 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.promo-text-short {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 400px;
}

/* Contenedores de Deslizadores Antes / Después */
.promo-block-middle {
    display: flex;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 8%;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.promo-block-bottom {
    display: flex;
    background-color: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 80px 8%;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.promo-block-final {
    display: flex;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 8% 40px 8%;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.slider-info-side {
    flex: 0.9;
    max-width: 440px;
}

.slider-info-side h3 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.slider-info-side p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 30px;
}

.slider-info-side p:not(:last-of-type) {
    margin-bottom: 15px;
}

.before-after-slider-container {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-container-slider {
    position: relative;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    cursor: ew-resize;
}

.image-container-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.image-after {
    width: 100%;
    height: 100%;
}

.image-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    transition: width 0.08s ease-out;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transition: left 0.08s ease-out;
}

.handle-line {
    width: 2px;
    height: calc(50% - 22px);
    background: rgba(255, 255, 255, 0.4);
}

.handle-button {
    width: 44px;
    height: 44px;
    background: var(--gradient-sport);
    border: 2px solid var(--text-white);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 67, 17, 0.4);
    font-size: 14px;
    z-index: 12;
}

/* Configuración Específica del Deslizador Vertical */
.vertical-slider .image-before-wrapper {
    width: 100%;
    height: 50%;
    border-bottom: 2px solid var(--accent-orange);
    border-right: none;
    transition: height 0.08s ease-out;
}

.vertical-slider .slider-handle {
    left: 0;
    top: 50%;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    flex-direction: row;
    transition: top 0.08s ease-out;
}

.vertical-slider .handle-line {
    width: calc(50% - 22px);
    height: 2px;
}

.vertical-slider .image-container-slider {
    cursor: ns-resize;
}

/* Responsivo para Promociones Expandidas */
@media (max-width: 992px) {
    .promo-grid-top {
        grid-template-columns: 1fr;
    }
    
    .promo-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .promo-block-middle,
    .promo-block-bottom,
    .promo-block-final {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
        text-align: center;
    }
    
    .slider-info-side {
        max-width: 100%;
    }
}

/* ==========================================================================
   SECCIÓN DE SERVICIOS
   ========================================================================== */

.services-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--accent-red);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-sport);
    margin: 0 auto 24px auto;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjeta de Servicio */
.service-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 50px 35px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 10, 11, 0.2);
    box-shadow: var(--shadow-card);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent-red);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    background: var(--gradient-sport);
    color: var(--text-white);
    box-shadow: var(--glow-red);
    border-color: transparent;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 35px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-features li i {
    color: var(--accent-orange);
    font-size: 12px;
}

.card-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.service-card:hover .card-link {
    color: var(--accent-orange);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* Tarjeta Destacada (Electrónica / CAN Bus) */
.highlight-card {
    border: 1px solid rgba(255, 67, 17, 0.25);
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(234, 10, 11, 0.02) 100%);
    box-shadow: 0 5px 30px rgba(234, 10, 11, 0.05);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--gradient-sport);
}

.highlight-card .card-icon {
    background: rgba(255, 67, 17, 0.08);
    border-color: rgba(255, 67, 17, 0.2);
    color: var(--accent-orange);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-sport);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECCIÓN NOSOTROS (VALORES & CONTADORES)
   ========================================================================== */

.about-section {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 120px 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Lista */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Estadísticas / Contadores Tipo Detailx */
.about-stats {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    position: relative;
    padding: 30px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    overflow: hidden;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-sport);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 5;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   SECCIÓN DE NOTICIAS / BLOG
   ========================================================================== */

.news-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 10, 11, 0.15);
    box-shadow: var(--shadow-card);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-sport);
    color: var(--text-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 10;
}

.news-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-image-wrap img {
    transform: scale(1.08);
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-content h4 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.news-content h4 a:hover {
    color: var(--accent-orange);
}

.news-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.news-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card:hover .news-link {
    color: var(--accent-orange);
}

.news-card:hover .news-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   SECCIÓN DE CONTACTO
   ========================================================================== */

.contact-section {
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Info Links */
.info-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 67, 17, 0.05);
    border: 1px solid rgba(255, 67, 17, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-orange);
}

.info-item h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0;
}

.info-item a:hover {
    color: var(--accent-orange);
}

/* Formulario */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
    box-shadow: var(--shadow-card);
}

.contact-form .form-group {
    margin-bottom: 26px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: var(--transition-fast);
    border-radius: 0px;
}

.contact-form select option {
    background-color: var(--bg-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 12px rgba(234, 10, 11, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 90px 24px 40px 24px;
}

.footer-container {
    max-width: 1290px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 340px;
}

/* Social */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--gradient-sport);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--glow-red);
}

/* Footer Links */
.footer-links h4,
.footer-services h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-services a {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1290px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   ANIMACIONES Y MEDIA QUERIES
   ========================================================================== */

/* Animaciones */
@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.bounce-animation {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s forwards ease-out 0.2s;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1.1s forwards ease-out 0.4s;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal con JS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   DISEÑO ADAPTABLE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 60px;
    }
    
    .promo-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact-box {
        justify-content: center;
    }
    
    .features-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-feature-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .icon-feature-card:nth-child(even) {
        border-right: none;
    }
    
    .split-promo-section {
        flex-direction: column;
    }
    
    .promo-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Menú Móvil */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .login-item {
        width: 100%;
        margin-top: 20px;
    }
    
    .btn-login {
        justify-content: center;
        width: 100%;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .phone-number {
        font-size: 22px;
    }

    /* Features Icons */
    .features-icons-grid {
        grid-template-columns: 1fr;
    }

    /* Promo Split */
    .promo-box {
        min-height: 380px;
        padding: 40px 24px;
    }
    
    .promo-content h3 {
        font-size: 26px;
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }

    /* Nosotros */
    .about-stats {
        padding: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Blog */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contacto */
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   SECCIÓN DEL PORTAL DE CLIENTES & VIDEO EXPLICATIVO
   ========================================================================== */
.portal-section {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0 100px 0;
    width: 100%;
}

.portal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.portal-info {
    max-width: 520px;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin: 35px 0 40px 0;
}

.portal-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.portal-features li i {
    font-size: 18px;
    color: var(--accent-red);
    margin-top: 4px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 67, 17, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--accent-orange);
}

.portal-features li strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-features li span {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
    display: block;
}

/* Envoltura del Video */
.portal-video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-video-container {
    position: relative;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.portal-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Control y Overlay del Video */
.video-overlay-ctrl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 23, 26, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    z-index: 5;
}

.portal-video-container:hover .video-overlay-ctrl {
    background: rgba(24, 23, 26, 0.2);
}

.pulse-button-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-pulse {
    width: 70px;
    height: 70px;
    background: var(--gradient-sport);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 67, 17, 0.5);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    text-decoration: none;
    z-index: 10;
}

.play-btn-pulse i {
    margin-left: 4px;
}

.play-btn-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    animation: playButtonPulse 2s infinite;
    opacity: 0;
    z-index: 1;
}

.play-btn-pulse:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 67, 17, 0.8);
}

@keyframes playButtonPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(24, 23, 26, 0.85);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-label i {
    color: var(--accent-red);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Responsivo para la Sección Portal */
@media (max-width: 992px) {
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .portal-info {
        max-width: 100%;
        text-align: center;
    }
    
    .portal-features li {
        text-align: left;
    }
}

/* Selector de Modalidad de Cita (Taller / Domicilio) */
.appointment-type-group {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    width: 100%;
}

.radio-label {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    text-align: center;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.radio-custom-btn i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--accent-red);
    transition: color 0.2s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom-btn {
    border-color: var(--accent-red);
    color: var(--text-white);
    background-color: rgba(255, 67, 17, 0.05);
    box-shadow: 0 0 10px rgba(255, 67, 17, 0.15);
}

.radio-label input[type="radio"]:checked + .radio-custom-btn i {
    color: var(--text-white);
}

/* Enlaces directos de WhatsApp */
.whatsapp-direct-box {
    margin-top: 35px;
}

.btn-whatsapp-direct {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: var(--text-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-direct:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: var(--text-white);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: var(--text-white);
}

@media (max-width: 576px) {
    .appointment-type-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   SECCIÓN DE TIENDA OFICIAL (MercadoLibre)
   ========================================================================== */
.ml-store-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: relative;
}

.services-section .section-container {
    padding-bottom: 40px;
}

.ml-store-section .section-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.store-card-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background-color: #111012;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.store-desc-high-impact {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.6;
    margin: 20px auto 35px auto;
}

.ml-redirect-block {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ml-official-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 24px;
    background-color: #ffe600;
    border: 2px solid #ffe600;
    border-radius: 4px;
    color: #2d3277;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ml-official-link:hover {
    border-color: #00a650;
    box-shadow: 0 0 25px rgba(0, 166, 80, 0.45);
    transform: translateY(-2px);
}

.ml-logo-btn-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe600;
    flex-shrink: 0;
}

.ml-button-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.4);
}

.ml-link-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d3277;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.ml-official-link:hover .ml-link-text {
    color: #2d3277;
}

.store-social-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
}

.social-promo-lead {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    transition: all 0.3s ease;
}

.social-btn-icon {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.btn-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

.btn-tiktok:hover {
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .store-card-wrapper {
        padding: 40px 20px;
    }
    .ml-official-link {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 20px;
    }
    .social-store-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .social-btn-store {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   MODAL DE INICIAR SESIÓN (Premium Glassmorphism & Dark Layout)
   ========================================================================== */

.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-card {
    background-color: #111012;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 440px;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-overlay.active .login-modal-card {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #949097;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal-btn:hover {
    color: var(--accent-orange);
}

.login-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-modal-header h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin: 15px 0 5px 0;
}

.login-modal-header p {
    font-size: 13px;
    color: #949097;
    line-height: 1.5;
    margin: 0;
}

.modal-logo-accent {
    color: var(--accent-red);
    font-weight: 900;
    font-size: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.modal-logo-icon {
    color: var(--accent-orange);
    margin-left: 4px;
}

.form-group-modal {
    margin-bottom: 20px;
}

.form-group-modal label {
    display: block;
    font-size: 12px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.input-wrapper-modal {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper-modal i {
    position: absolute;
    left: 15px;
    color: #949097;
    font-size: 14px;
}

.input-wrapper-modal input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background-color: #1a191c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-wrapper-modal input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 67, 17, 0.25);
}

.form-options-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 25px;
}

.remember-me {
    color: #949097;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.remember-me input {
    accent-color: var(--accent-orange);
}

.forgot-pass-link {
    color: #949097;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-pass-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.btn-login-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-sport);
    border: none;
    color: var(--text-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login-submit:hover {
    box-shadow: 0 0 20px rgba(255, 67, 17, 0.35);
    transform: translateY(-1px);
}

.login-modal-notice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.login-modal-notice p {
    font-size: 12px;
    color: #949097;
    line-height: 1.6;
    margin: 0;
}

.login-modal-notice a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.login-modal-notice a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}


