:root {
    --primary-blue: #283583;
    --primary-red: #D7282F;
    --primary-yellow: #F5ED4B;
    --dark-bg: #ffffff;
    --card-bg: #f8f9fa;
    --text-light: #1a1a1a;
    --text-dim: #4a4a4a;
    --accent: #283583;
    --header-bg: rgba(255, 255, 255, 0.9);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

p {
    line-height: 1.6;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%; /* Slightly reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    padding: 0.5rem 5%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo img {
    height: 75px; /* Increased from 50px */
    transition: var(--transition-smooth);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

nav ul.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-red);
}

/* Hero Slider - Full Width & Clean */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 !important; /* Force full width by removing global section padding */
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligned to left for cinematic look */
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1);
    transform: scale(1.1);
    transition: transform 10s linear;
}

.slide.active .slide-image {
    transform: scale(1);
}

/* Subtler gradient overlay for maximum image clarity */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.25) 0%, transparent 70%);
    z-index: 5;
}

@media (max-width: 768px) {
    .slide::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 0 8%;
    text-align: left;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1, .slide-content h2 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: #ffffff;
}

.slide-content h1 span, .slide-content h2 span {
    color: var(--primary-red);
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.slide-content p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}

/* Slider Arrows - Premium Glassmorphism */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.3rem;
}

.slider-arrow:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(215, 40, 47, 0.4);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

@media (max-width: 992px) {
    .slide-content h1, .slide-content h2 {
        font-size: 2.8rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 10% 80px 10%; /* Añadido padding inferior para alejar el texto de los controles */
    }
    .slide-content h1, .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: auto;
        bottom: 25px; /* Bien abajo */
        transform: none !important;
        z-index: 1001;
    }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }

    .slider-dots {
        bottom: 40px; /* Un poco por encima de la línea de las flechas para un look más limpio */
    }
}

.card h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-red);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-red);
}

/* Sections */
section {
    padding: 100px 10%;
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 0;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 2.5rem;
    flex-grow: 1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 45px rgba(40, 53, 131, 0.1);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
}

.brand-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative; /* Para el brillo */
}

/* Efecto Brillo (Shimmer) */
.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 5;
}

.brand-card:hover::after {
    left: 150%;
}

.brand-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado a contain para no cortar texto de los flyers */
    padding: 10px; /* Pequeño respiro interno */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-card span {
    padding: 1.2rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: #ffffff;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brand-card span {
        padding: 0.8rem 0.3rem;
        font-size: 0.75rem;
    }
    
    .brand-card.featured::before {
        padding: 3px 30px;
        font-size: 0.5rem;
    }
}

.brand-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.brand-card:hover img {
    transform: scale(1.08);
}

.brand-card.featured {
    border: 2px solid var(--primary-red);
    position: relative;
}

.brand-card.featured::before {
    content: 'TOP VENTAS';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-red);
    color: white;
    padding: 5px 40px;
    font-size: 0.6rem;
    font-weight: 900;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Applications Section */
.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: default;
}

.app-item i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.app-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.app-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    background: var(--primary-blue);
}

.app-item:hover i, .app-item:hover span {
    color: #ffffff;
}

/* Info Tips Section */
.tips-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tip-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tip-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tip-item:hover .tip-image img {
    transform: scale(1.05);
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.tip-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.tip-highlight {
    background: #fdf2f2;
    border-left: 5px solid var(--primary-red);
    padding: 2rem;
    margin-top: 1.5rem;
    border-radius: 0 15px 15px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.tip-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Section Separators */
.separator {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.separator .shape-fill {
    fill: #f8f9fa;
}

/* Background Alternations */
.bg-light {
    background-color: #f8f9fa;
}

.bg-white {
    background-color: #ffffff;
}

.bg-accent-blue {
    background: linear-gradient(135deg, #1a237e 0%, #283583 50%, #1a237e 100%);
    position: relative;
    overflow: hidden;
    color: white !important;
}

/* Patrón de fondo sutil con animación - Ahora más visible */
.bg-accent-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    animation: energyFlow 10s linear infinite;
}

@keyframes energyFlow {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

.bg-accent-blue .section-title h2, 
.bg-accent-blue .section-title p {
    color: white !important;
    position: relative;
    z-index: 2;
}

.bg-accent-blue .card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.bg-accent-blue .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.bg-accent-blue .card h3, 
.bg-accent-blue .card p {
    color: white !important;
}

.bg-accent-blue .card i {
    color: var(--primary-yellow);
    filter: drop-shadow(0 0 10px rgba(245, 237, 75, 0.5));
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.bg-accent-blue .card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-yellow);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 20px rgba(245, 237, 75, 0.2);
}

.bg-accent-blue .card:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(245, 237, 75, 0.8));
}

/* Promo Section GRATIS */
.bg-dark-promo {
    background: linear-gradient(135deg, #0c122b 0%, #1a237e 100%);
    padding: 80px 10%;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-red);
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-icon {
    position: relative;
    font-size: 4.5rem;
    color: var(--primary-yellow);
    filter: drop-shadow(0 0 15px rgba(245, 237, 75, 0.4));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% { width: 60px; height: 60px; opacity: 1; }
    100% { width: 150px; height: 150px; opacity: 0; }
}

.promo-text h2 {
    font-size: 2.5rem; /* Reducido levemente para mejorar el flujo */
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: white;
}

.promo-text h2 span {
    color: var(--primary-red);
    background: var(--primary-yellow);
    padding: 2px 15px;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    margin-left: 10px;
    white-space: nowrap;
}

.promo-text p {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.promo-cta .cta-button {
    white-space: nowrap; /* Asegura una sola línea */
}

@media (max-width: 992px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .promo-text h2 {
        font-size: 2.2rem;
    }
    .promo-text h2 span {
        margin-left: 0;
        margin-top: 10px;
    }
    .promo-text p {
        font-size: 1.1rem;
    }
    .promo-icon {
        font-size: 3.5rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .tip-item, .tip-item:nth-child(even) {
        flex-direction: column;
    }
    
    .tip-image {
        width: 100%;
    }
}

.menu-close {
    display: none;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        order: 2;
        font-size: 1.8rem;
    }

    nav ul.nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px; /* Smaller size as requested */
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start; /* Aligned to left for better menu look */
        justify-content: center;
        padding: 0 40px;
        gap: 1.5rem;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -15px 0 40px rgba(0,0,0,0.15);
        z-index: 2000;
        display: flex;
    }

    nav ul.nav-list.active {
        right: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 1.8rem;
        color: var(--primary-blue);
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .menu-close:hover {
        color: var(--primary-red);
        transform: rotate(90deg);
    }

    header .contact-cta {
        display: none;
    }

    nav ul.nav-list li a {
        font-size: 1.1rem;
        font-weight: 700;
        padding: 0.8rem 0;
        display: inline-block;
        width: auto;
    }

    nav ul.nav-list li a:hover {
        color: var(--primary-red);
    }

    /* Subrayado animado para móvil - Igual que PC */
    nav ul.nav-list li a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-red);
        transition: var(--transition-smooth);
        transform: none; /* Removed the translateX(-50%) to match PC left-alignment */
    }

    nav ul.nav-list li a:hover::after {
        width: 100%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
    box-shadow: 2px 5px 20px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes whatsappAttention {
    0%, 90%, 100% { transform: scale(1); }
    92% { transform: scale(1.1) translateY(-10px) rotate(5deg); }
    94% { transform: scale(1.1) translateY(-10px) rotate(-5deg); }
    96% { transform: scale(1.1) translateY(-10px) rotate(5deg); }
    98% { transform: scale(1.1) translateY(-10px) rotate(0); }
}

.whatsapp-float {
    animation: pulse 2s infinite, whatsappAttention 6s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(215, 40, 47, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px; /* Above WhatsApp */
    right: 40px;
    background-color: var(--primary-blue);
    color: #FFF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

/* Medios de Pago Ticker */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ticker-wrapper {
    display: flex;
    width: max-content; /* Ensure it takes full width of children */
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    margin: 0 1rem;
    background: #ffffff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    cursor: default;
    min-width: max-content;
}

.ticker-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.ticker-item:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-5px);
}

.ticker-item:hover i {
    color: #ffffff;
}

@keyframes scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-container:hover .ticker-wrapper {
    animation-play-state: paused;
}

/* Slider Indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 10px;
}

/* --- Refactorización de Estilos Inline --- */

/* Ajustes Generales de Secciones */
.section-compact {
    padding: 60px 5%;
    background: var(--card-bg);
}

.section-title-compact {
    margin-bottom: 3rem;
}

.section-title-compact h2 {
    font-size: 1.8rem;
}

.grid-apps {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
}

/* Tip Highlight específico de Baterías */
.brands-tip {
    margin-top: 3rem;
    padding: 1.2rem;
    text-align: center;
    background: #f1f3f5;
    border: none;
    border-radius: 20px;
}

.brands-tip p {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contacto y Ubicación */
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-info-text {
    text-align: center;
    margin: 0;
}

.contact-info-text.mb-small {
    margin-bottom: 0.5rem;
}

.contact-btn-maps {
    margin-top: 1.5rem !important;
}

.contact-icon-wa {
    color: #25d366;
    font-size: 1rem;
}

.contact-icon-phone {
    color: var(--primary-blue);
    font-size: 1rem;
}

.map-container {
    margin-top: 4rem;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.main-footer {
    padding: 4rem 10%;
    background: #0c122b;
    text-align: center;
    color: white;
}

.footer-logo {
    height: 110px;
    margin-bottom: 2.5rem;
}

.footer-social {
    margin-bottom: 2.5rem;
}

.footer-social a {
    color: white;
    margin: 0 1.5rem;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--primary-red);
    transform: translateY(-5px);
}

.footer-copy {
    color: #8a8a8a;
    font-size: 0.9rem;
}

.footer-fbci {
    margin-top: 2.5rem;
}

.footer-fbci img {
    height: 50px;
    transition: transform 0.3s;
}

.footer-fbci img:hover {
    transform: scale(1.1);
}

/* CTA Header */
.cta-header {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 4rem 20px;
    }
    
    .footer-social a {
        margin: 0 1rem;
        font-size: 1.5rem;
    }
}
