/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

/* COLORES */
:root {
    --verde: #00c853;
    --negro: #111;
    --gris: #f5f5f5;
}

/* HEADER */
.header {
    width: 100%;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
    margin: 0;
    letter-spacing: 1px;
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    font-size: 0.95rem;
    transition: 0.2s;
}

.menu a:hover {
    color: var(--verde);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
}

/* LÍNEAS DEL BOTÓN HAMBURGUESA */
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: 0.3s;
}

/* MENÚ MÓVIL OCULTO POR DEFECTO */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    z-index: 9999; /* por encima del header */
}

/* ENLACES DEL MENÚ MÓVIL */
.mobile-menu a {
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

/* CUANDO SE ABRE */
.mobile-menu.open {
    display: flex !important;
}

/* OCULTAR MENÚ DE ESCRITORIO EN MÓVIL */
@media (max-width: 900px) {
    .menu {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 20000; /* por encima del header */
    }
}


/* HERO URGENCIAS */
.hero-urgencias {
    padding: 160px 20px 100px;
    text-align: center;
    background: var(--gris);
}

.hero-urgencias h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 10px;
}

.hero-urgencias h1 {
    font-size: 2.8rem;
    margin: 10px 0;
}

.hero-urgencias .sub {
    font-size: 1.1rem;
    color: #444;
}

.botones {
    margin-top: 20px;
}

.btn,
.btn-wsp {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    font-size: 0.95rem;
}

.btn {
    background: var(--negro);
    color: #fff;
}

.btn-wsp {
    background: #25D366;
    color: #fff;
}

/* SERVICIOS */
.servicios {
    padding: 80px 20px;
    text-align: center;
}

.servicios h2 {
    font-size: 2.1rem;
    margin-bottom: 40px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.servicio-card.full-img {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
}

.servicio-card.full-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.servicio-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    text-align: center;
}

.servicio-overlay h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.servicio-overlay p {
    color: #eee;
    font-size: 0.9rem;
}

/* POR QUÉ ELEGIRNOS */
.porque {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
}

.porque h2 {
    font-size: 2.1rem;
    margin-bottom: 40px;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.porque-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.porque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.porque-card img {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
}

.porque-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
}

.porque-card p {
    font-size: 0.95rem;
    color: #555;
}

/* CONTACTO */
.contacto {
    padding: 80px 20px;
    text-align: center;
    background: var(--gris);
}

.contacto h2 {
    font-size: 2.1rem;
    margin-bottom: 18px;
}

.contacto p {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.contacto-mapa iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
}

.botones-contacto {
    margin-top: 25px;
}

/* FOOTER */
.footer {
    background: var(--negro);
    color: #fff;
    text-align: center;
    padding: 22px;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}

/* MODAL GALERÍA */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-contenido {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
}

.cerrar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.thumbs {
    text-align: center;
    margin-top: 20px;
}

.thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.7;
}

.thumbs img:hover {
    opacity: 1;
}

/* SLIDER FULLSCREEN */
.slider-full {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 4s ease;
}

.slide-item.active {
    opacity: 1;
    transform: scale(1);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.prev, .next {
    font-size: 60px;
    color: white;
    cursor: pointer;
    text-shadow: 0 0 10px black;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 20;
}

.dot {
    height: 12px;
    width: 12px;
    background: #bbb;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: var(--verde);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 4s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-text {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 20;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-text h2 {
    font-size: 1.4rem;
    color: var(--verde);
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* TIRA VERDE ANIMADA */
.marquee {
    width: 100%;
    background: #00c853;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.marquee-content span {
    display: inline-block;
    margin: 0 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* SERVICIOS V2 – FOTO ARRIBA, TEXTO ABAJO */
.servicio-card-v2 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.servicio-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.servicio-card-v2 .servicio-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.servicio-card-v2 h3 {
    font-size: 1.3rem;
    margin: 15px 20px 5px;
    color: #111;
    font-weight: 700;
}

.servicio-card-v2 p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 20px 20px;
}

/* POR QUÉ ELEGIRNOS — VERSIÓN PREMIUM SIN ICONOS */
.porque {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
}

.porque h2 {
    font-size: 2.1rem;
    margin-bottom: 40px;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.porque-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    text-align: left;
}

.porque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.linea-verde {
    width: 55px;
    height: 5px;
    background: var(--verde);
    border-radius: 3px;
    margin-bottom: 15px;
}

.porque-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
    font-weight: 700;
}

.porque-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* CONTACTO — TARJETAS PREMIUM */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contacto-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    text-align: left;
}

.contacto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.contacto-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
    font-weight: 700;
}

.contacto-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.contacto-card .btn,
.contacto-card .btn-wsp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
}

.contacto-card .btn {
    background: var(--negro);
    color: #fff;
}

.contacto-card .btn-wsp {
    background: #25D366;
    color: #fff;
}

/* NUESTROS TRABAJOS EN ACCIÓN */
.accion {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
}

.accion h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.accion .sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.accion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.accion-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.accion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.accion-card video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #000;
}

.accion-card h3 {
    font-size: 1.2rem;
    margin: 15px 20px 20px;
    color: #111;
    font-weight: 700;
}

.badge-fotos {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--verde);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
}
.servicio-card-v2 {
    position: relative;
}

/* EFECTO HOVER PREMIUM PARA "VER FOTOS" */
.badge-fotos {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--verde);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
    transition: 0.25s ease;
    box-shadow: 0 0 0px rgba(0, 200, 83, 0); /* sin glow por defecto */
}

/* EFECTO SLIDE-IN PARA "VER FOTOS" */
.badge-fotos {
    position: absolute;
    top: 10px;
    left: -80px; /* empieza fuera de la tarjeta */
    background: var(--verde);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
    transition: 0.35s ease;
    opacity: 0;
}

/* OPTIMIZACIÓN PARA MÓVIL */
@media (max-width: 768px) {
    .badge-fotos {
        left: 10px;
        top: 10px;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: var(--verde);
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .servicio-card-v2:hover .badge-fotos {
        left: 10px;
        opacity: 1;
        box-shadow: none;
    }
}   
/* EFECTO AL PASAR EL RATÓN */
.servicio-card-v2:hover .badge-fotos {
    left: 10px; /* se desliza hacia dentro */
    opacity: 1;
}

/* ============================
   OPTIMIZACIÓN MÓVIL SERVICIOS
============================ */
@media (max-width: 768px) {

    /* GRID MÁS CÓMODO EN MÓVIL */
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    /* TARJETAS MÁS COMPACTAS */
    .servicio-card-v2 {
        border-radius: 12px;
        padding-bottom: 10px;
    }

    /* IMÁGENES MÁS ALTAS Y LIMPIAS */
    .servicio-img {
        height: 130px;
        border-radius: 12px 12px 0 0;
        background-size: cover;
        background-position: center;
    }

    /* TÍTULO MÁS EQUILIBRADO */
    .servicio-card-v2 h3 {
        font-size: 1rem;
        margin: 10px 0 5px;
        text-align: center;
    }

    /* DESCRIPCIÓN MÁS PEQUEÑA Y LIMPIA */
    .servicio-card-v2 p {
        font-size: 0.8rem;
        text-align: center;
        padding: 0 6px;
        margin-bottom: 8px;
    }

    /* ETIQUETA "VER FOTOS" PERFECTA EN MÓVIL */
    .badge-fotos {
        left: 10px;
        top: 10px;
        opacity: 1;
        transform: none;
        background: var(--verde);
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
        box-shadow: none;
    }

    /* DESACTIVAR EFECTO HOVER EN MÓVIL */
    .servicio-card-v2:hover .badge-fotos {
        left: 10px;
        opacity: 1;
        box-shadow: none;
    }
}

.videos-section {
    padding: 60px 20px;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-card {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    object-fit: cover;
    background: #000;
}

/* TIRA VERDE DEBAJO DEL HEADER FIJO */
.marquee-header {
    margin-top: 120px;
    z-index: 4000;
    position: relative;
    animation: scroll 30s linear infinite;
}

/* POSICIONAR MENÚ MÓVIL DEBAJO DEL HEADER FIJO */
.header {
    position: fixed;
    width: 100%;
}

.mobile-menu {
    position: fixed; /* antes estaba absolute */
    top: 85px; /* altura real de tu header */
    left: 0;
    width: 100%;
}

/* ============================
   OPTIMIZACIÓN COMPLETA MÓVIL
============================ */
@media (max-width: 768px) {

    /* HEADER MÁS COMPACTO */
    .header {
        padding: 10px 18px;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    /* MENÚ MÓVIL PERFECTO */
    .mobile-menu {
        position: fixed;
        top: 75px; /* debajo del header */
        left: 0;
        width: 100%;
        background: white;
        padding: 25px 0;
        gap: 18px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        z-index: 9999;
    }

    .mobile-menu a {
        font-size: 1.1rem;
        font-weight: 700;
        color: #111;
    }

    .mobile-menu.open {
        display: flex !important;
    }

    /* BOTÓN HAMBURGUESA */
    .menu-toggle {
        display: flex !important;
        z-index: 20000;
    }

    /* TIRA VERDE DEBAJO DEL HEADER */
    .marquee-header {
        margin-top: 78px;
    }

    /* SLIDER MÁS EQUILIBRADO */
    .hero-slider {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-text .botones a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* SERVICIOS MÁS LIMPIOS */
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .servicio-img {
        height: 130px;
    }

    .servicio-card-v2 h3 {
        font-size: 1rem;
        margin: 10px 0 5px;
        text-align: center;
    }

    .servicio-card-v2 p {
        font-size: 0.8rem;
        text-align: center;
        padding: 0 6px;
        margin-bottom: 8px;
    }

    /* VIDEOS MÁS PEQUEÑOS */
    .video-card {
        height: 220px;
        border-radius: 10px;
    }

    /* POR QUÉ ELEGIRNOS */
    .porque-card {
        padding: 22px 18px;
    }

    .porque-card h3 {
        font-size: 1.1rem;
    }

    .porque-card p {
        font-size: 0.85rem;
    }

    /* CONTACTO */
    .contacto-card {
        padding: 22px 18px;
    }

    .contacto-card h3 {
        font-size: 1.1rem;
    }

    .contacto-card p {
        font-size: 0.85rem;
    }

    .contacto-card .btn,
    .contacto-card .btn-wsp {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* ============================
   ANIMACIONES PREMIUM
============================ */

/* FADE-UP (entrada suave al hacer scroll) */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FADE-IN GENERAL */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* LOGO ANIMACIÓN */
.logo-box {
    opacity: 0;
    animation: logoIn 0.8s ease forwards;
}

@keyframes logoIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* MENÚ MÓVIL DESLIZANTE */
.mobile-menu {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

/* TARJETAS SERVICIOS PREMIUM */
.servicio-card-v2 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card-v2:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* TIRA VERDE ENTRADA SUAVE */
.marquee-header {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

/* ============================
   OPTIMIZACIÓN MÓVIL
============================ */
@media (max-width: 768px) {

    /* HEADER MÁS COMPACTO */
    .header {
        padding: 8px 16px;
    }

    .logo-img {
        height: 48px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    /* MENÚ MÓVIL PERFECTO */
    .mobile-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 25px 0;
        gap: 18px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    /* TIRA VERDE AJUSTADA */
    .marquee-header {
        margin-top: 60px;
    }

    /* SLIDER MÁS EQUILIBRADO */
    .hero-slider {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* SERVICIOS MÁS LIMPIOS */
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .servicio-img {
        height: 130px;
    }

    /* VIDEOS MÁS PEQUEÑOS */
    .video-card {
        height: 220px;
        border-radius: 10px;
    }
}

/* MARQUEE SUAVE, CONTINUO Y SIN CORTES */
.marquee,
.marquee-header {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 60px; /* separación entre frases */
    animation: marqueeScroll 45s linear infinite; /* MÁS LENTO Y SUAVE */
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

