/* --- RESET & GENERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #000;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
}

.logo-main {
    height: 40px;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre texto e icono */
}

.contact-text {
    text-align: right;
}

.contact-text .label {
    font-size: 10px;
    color: #ccc;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
}

.contact-text .number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.icon-call {
    height: 50px; /* Ajuste para escritorio */
    width: auto;
}

/* --- HERO SECTION (VIDEO) --- */
.hero {
    position: relative;
    height: 100vh; /* Ocupa toda la pantalla */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* CLAVE: Cubre la pantalla sin estirarse */
    object-position: center; /* Centra el video */
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* Oscurece el video para leer texto */
    z-index: -1;
}

.hero-content {
    margin-top: 100px; /* Espacio para que no lo tape el header */
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-content span {
    font-style: italic;
    font-weight: 900;
}

.btn-info {
    background-color: #009FE3;
    color: white;
    padding: 12px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
}

/* --- INTRO LIGHT --- */
.intro-light {
    background-color: #f5f7fa;
    color: #2c3e50;
    text-align: center;
    padding: 100px 20%;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
}

.intro-light strong {
    color: #1a2b4b;
    font-weight: 700;
    font-style: italic;
}

/* --- SERVICIOS HORIZONTAL --- */
.services-horizontal {
    background-color: #f5f7fa;
    padding: 0px 5% 100px 5%;
    display: flex;
    justify-content: center;
}

.services-container {
    display: flex;
    align-items: stretch;
    gap: 30px;
    max-width: 1400px;
    flex-wrap: wrap;
    justify-content: center;
}

.title-box {
    background-color: #020b16;
    color: white;
    padding: 40px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex-shrink: 0;
}

.title-box h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
}

.title-box span {
    font-weight: 800;
    font-size: 38px;
    color: #fff;
    display: block;
}

.cards-row {
    display: flex;
    gap: 30px;
}

.card-img {
    width: 280px;
    height: auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; 
}

.card-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.arrow-box {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.arrow-box a {
    display: inline-block;
}

.arrow-box img {
    width: 35px;
    cursor: pointer;
    transition: transform 0.3s;
}

.arrow-box img:hover {
    transform: translateX(10px);
}

/* --- SOBRE NOSOTROS --- */
.about-light {
    position: relative;
    background-color: #ffffff;
    padding: 100px 10%;
    overflow: hidden;
}

.bg-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-img-wrapper {
    position: relative;
    flex: 1;
}

.main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: #009FE3;
    color: white;
    padding: 20px 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
}

.exp-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.about-info {
    flex: 1;
    text-align: left;
}

.about-title {
    font-size: 42px;
    color: #000;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-title span {
    font-weight: 700;
}

.about-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-about {
    display: inline-block;
    background-color: #009FE3;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-about:hover {
    background-color: #007bb5;
}

/* --- RAZONES --- */
.reasons {
    background-color: #000;
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title span {
    color: #009FE3;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item img {
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.reason-item:hover img {
    transform: translateY(-12px); 
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.35); 
    filter: brightness(1.1); 
}

/* --- CTA BANNER --- */
.cta-banner {
    position: relative;
    background-image: url('img/IMG HOR FTA.png'); 
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45); 
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.2;
}

.cta-content span {
    font-weight: 800;
    text-transform: uppercase;
    display: block;
}

.btn-cta {
    display: inline-block;
    background-color: #009FE3;
    color: white;
    padding: 15px 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-cta:hover {
    background-color: #0081b8;
    transform: translateY(-3px);
}

/* --- CLIENTES CARRUSEL --- */
.clients-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    text-align: center;
}

.slider {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(200px * 38); 
    animation: scroll 40s linear infinite; 
}

.slide {
    height: 100px;
    width: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide img {
    max-width: 100%;
    max-height: 80px; 
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    cursor: pointer;
    object-fit: contain;
}

.slide img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1); 
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 19)); } 
}

/* --- FOOTER FINAL --- */
footer {
    background-color: #030811; 
    padding: 60px 8%;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-logo {
    width: 180px;
    margin-bottom: 30px;
    display: block;
}

.rs-group {
    width: 140px; 
    cursor: pointer;
}

.navigation {
    display: flex;
    justify-content: center;
}

.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation li {
    margin-bottom: 15px;
    text-align: left;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #009FE3;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
    justify-content: flex-end;
    max-width: 350px; 
}

.contact-item img {
    width: 20px; 
    height: auto;
}

.contact-item span {
    font-size: 13px;
    font-weight: 400;
    color: #e0e0e0;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* --- ESTILOS PAGINAS INTERNAS (HERO, CARDS) --- */
.hero-static {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.blue-tag {
    display: inline-block;
    color: white; 
    background: rgba(0, 159, 227, 0.9); 
    padding: 6px 18px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Tarjetas Valores (Negras) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #080b10;
    border: 1px solid #222;
    padding: 40px 25px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #009FE3;
}

.icon-value {
    font-size: 45px;
    color: #009FE3;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.value-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

/* Tarjetas Estadísticas (Blancas) */
.stat-card {
    background-color: #ffffff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 32px;
    color: #aaa;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #009FE3;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SERVICIOS PAGE STYLES --- */
.services-dark-section {
    background-color: #02050a; 
    padding: 100px 10%;
    text-align: center;
}

.services-dark-section .section-title {
    color: white;
}

.service-card-pro {
    background-color: white;
    padding: 40px 25px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.15);
}

.card-bar {
    position: absolute;
    top: 0; left: 0;
    height: 5px;
    width: 50px;
    background-color: #000;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.service-card-pro:hover .card-bar {
    width: 100%;
    background-color: #009FE3;
}

.icon-box {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
    margin-top: 10px;
    transition: color 0.3s;
}

.service-card-pro:hover .icon-box {
    color: #009FE3;
}

.service-card-pro h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* =========================================
   ESTILOS CONTACTO
   ========================================= */

.contact-visual-section {
    background-color: white;
    padding: 80px 5%;
    color: #000;
}

.main-contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-split-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 50px;
}

.info-side {
    flex: 1;
    padding-top: 20px;
}

.contact-heading {
    font-size: 52px;
    font-weight: 800;
    color: #020b16;
    margin-bottom: 15px;
    text-transform: none;
}

.black-underline {
    width: 80px;
    height: 6px;
    background-color: #020b16;
    margin-bottom: 40px;
}

.contact-list-clean {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list-clean li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.contact-list-clean i {
    width: 25px;
    margin-right: 10px;
    color: #000;
    font-size: 18px;
    text-align: center;
}

.black-phone-box {
    background-color: #020b16;
    color: white;
    padding: 35px 30px;
    width: 100%;
    max-width: 350px;
    border-radius: 0;
}

.phone-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.phone-row:last-child {
    margin-bottom: 0;
}

.phone-row i {
    border: 1px solid white;
    padding: 8px;
    border-radius: 4px;
    margin-right: 15px;
    font-size: 14px;
}

.map-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.form-gray-container {
    background-color: #f2f2f0; 
    padding: 50px 80px;
    text-align: left;
}

.form-gray-container h3 {
    font-size: 28px;
    color: #020b16;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-gray-container p {
    color: #777;
    margin-bottom: 40px;
    font-size: 16px;
}

.clean-line-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-line-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #aaa;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    outline: none;
}

.input-line-group input::placeholder {
    color: #aaa;
}

.input-line-group input:focus {
    border-bottom-color: #009FE3;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-black-send {
    background-color: #020b16;
    color: white;
    border: none;
    padding: 12px 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-black-send:hover {
    background-color: #009FE3;
}

/* Compatibilidad wrappers viejos */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #333;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009FE3;
    background-color: #fff;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* ==============================================================
   MEDIA QUERIES - RESPONSIVE (Tablets y Móviles)
   ============================================================== */

/* --- TABLETS Y LAPTOPS PEQUEÑAS (Max 1024px) --- */
@media (max-width: 1024px) {
    
    /* 1. HEADER (Menú 2x2 visible + Contacto ajustado) */
    header {
        padding: 10px 15px; /* Menos padding */
        flex-wrap: wrap; 
        height: auto;
        background-color: #000;
    }

    .logo-main {
        order: 1; 
        height: 35px; /* Logo legible */
    }

    .header-right {
        order: 2; 
        gap: 8px; /* Menos espacio entre número e icono */
    }

    /* AQUI ESTA LA MAGIA: Hacemos que el contacto aparezca pero más pequeño */
    .contact-text {
        display: block !important; 
    }
    
    .contact-text .label {
        font-size: 8px; /* Texto "Call Center" muy pequeño */
        color: #aaa;
    }

    .contact-text .number {
        font-size: 12px; /* Número legible */
    }

    .icon-call {
        height: 35px; /* Icono más pequeño para móvil */
    }

    nav { 
        display: block !important; 
        width: 100%;
        order: 3;          
        margin-top: 10px;
        border-top: 1px solid #222;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    
    nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Columnas */
        gap: 10px 5px;
        list-style: none;
        padding: 0;
        justify-items: center;
    }

    nav a {
        font-size: 11px; /* Letra de menú ajustada */
        white-space: nowrap;
    }

    /* 2. HERO / VIDEO (Ajuste altura) */
    .hero-content {
        margin-top: 180px; 
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }

    /* 3. SECCIONES GENERALES */
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .title-box {
        width: 100%;
        max-width: 500px;
        text-align: center;
        justify-content: center;
        padding: 30px;
    }
    
    .title-box span { 
        display: inline; 
        margin-left: 5px; 
    }

    .cards-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .about-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-info {
        text-align: center;
    }

    .experience-badge {
        position: relative;
        bottom: auto; left: auto; right: auto;
        margin: -25px auto 0 auto;
        width: fit-content;
        transform: none;
        padding: 15px 25px;
    }

    .about-title { font-size: 32px; }

    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-content h2 { font-size: 28px; }
    .btn-cta { padding: 12px 35px; }
}

/* --- TABLETS VERTICALES (Max 900px) --- */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .navigation, .contact-details {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* --- MÓVILES (Max 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Header & Hero */
    .hero-content h1 { 
        font-size: 32px; 
        line-height: 1.2;
    }
    
    /* Ajuste para que el texto de contacto no se rompa si la pantalla es muy angosta */
    .logo-main {
        height: 30px;
    }
    .icon-call {
        height: 30px;
    }

    /* 2. VIDEO MOBILE */
    .hero {
        min-height: 100vh; /* Fuerza pantalla completa */
    }

    /* 3. SECCIONES GENERALES */
    .services-horizontal { padding: 0 20px 60px 20px; }
    .card-img { width: 100%; max-width: 320px; }
    .about-light { padding: 60px 20px; }
    .main-img { width: 100%; }
    .reasons { padding: 60px 20px; }
    .section-title { font-size: 28px; margin-bottom: 40px; }

    /* Grillas a 1 columna */
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    
    .value-card, .stat-card { max-width: 400px; margin: 0 auto; }
    .cta-banner { padding: 80px 20px; }
    .btn-cta { width: 100%; padding: 15px 0; }

    /* 4. CONTACTO */
    .contact-visual-section { padding: 50px 20px; }
    .contact-split-layout { flex-direction: column; gap: 40px; }
    .contact-heading { font-size: 34px; }
    .form-gray-container { padding: 40px 20px; }
    .clean-line-form { gap: 20px; }
    .black-phone-box { width: 100%; max-width: 100%; }

    .form-row { flex-direction: column; gap: 0; }
    .contact-form-wrapper { padding: 30px 20px; }

    /* 5. FOOTER & EXTRAS */
    footer { padding: 40px 20px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 28px; }

    /* Carrusel */
    .slide { width: 150px; padding: 0 10px; }
    .slide img { max-height: 60px; }
    .slide-track { width: calc(150px * 38); animation: scroll-mobile 25s linear infinite; }
}

/* --- MÓVILES MUY PEQUEÑOS (Max 380px) --- */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 26px; }
    .intro-light { font-size: 18px; padding: 60px 20px; }
    .title-box span { font-size: 32px; }
    
    /* Si el celular es muy pequeño, escondemos el texto "Call Center" pero dejamos el número */
    .contact-text .label { display: none; }
}

@keyframes scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 19)); }
}