.menu {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* En PC se queda fijo */
    position: sticky;
    top: 0;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
}

.logo {
    height: 60px;
    width: auto;
}

.menu-items {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu-items li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.menu-items li a:hover {
    color: #007BFF;
}

/* --- BARRA MÓVIL (Oculta por defecto en PC) --- */
.mobile-nav {
    display: none;
    /* Se oculta en PC */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.nav-item.active {
    color: #1e3a8a;
}

/* --- RESPONSIVE (Celulares) --- */
@media (max-width: 768px) {
    .menu {
        position: relative;
        /* ¡CLAVE! En celular sube con el scroll */
    }

    /* Ocultamos el menú de texto arriba en celular para no estorbar */
    .navbar {
        display: none;
    }

    .menu-container {
        justify-content: center;
        /* Centramos el logo en el cel */
        padding: 15px;
    }

    .mobile-nav {
        display: flex;
        /* Aparece la barra tipo App abajo */
    }

    .main-content {
        padding-bottom: 70px;
        /* Espacio para que el footer no tape el contenido */
    }

    footer {
        padding-bottom: 80px;
        /* Espacio extra para el footer */
    }
}

/* --- AJUSTE QUIRÚRGICO PARA CELULARES --- */
@media screen and (max-width: 768px) {

    /* 1. Forzamos a que el carrusel sea más alto y no deje aire abajo */
    .carousel {
        height: 75vh !important;
        /* Ajuste este número si quiere más o menos altura */
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 100% !important;
        object-fit: cover !important;
        /* Para que la imagen cuadrada llene todo el ancho y alto */
    }

    /* 2. Quitamos cualquier margen superior de la barra de anuncios */
    .announcement-bar {
        margin-top: -1px !important;
        /* Un truquito de técnico para solapar un pixel y que no se vea luz */
        position: relative;
        z-index: 20;
    }

    /* 3. Ajustamos el caption para que no se pierda con la foto más grande */
    .carousel-caption1 {
        bottom: 15% !important;
        width: 90% !important;
    }
}

/* Capa de texto sobre la imagen */
.carousel-caption1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centrado perfecto */
    width: 80%;
    text-align: center;
    color: white;
    z-index: 10;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 3000;
    /* Más alto que todo */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* Efecto de vidrio soplado (tipo iPhone) */
}

/* Ajuste para el botón de WhatsApp para que no tape la barra */
.whatsapp-float {
    bottom: 80px !important;
    /* Lo subimos para que no se pegue a la barra móvil */
}

.carousel-caption1 h2 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-cotizar {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* Animación */
@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Flechas */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: 0.3s;
    z-index: 5;
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Animación texto */
.fade-in {
    animation: fade 1s ease-in-out;
}

/* Media Query para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .carousel {
        height: 50vh;
    }

    .carousel-slide img {
        height: 50vh;
    }

    .carousel-caption {
        font-size: 1.2rem;
        padding: 4px 8px;
    }

    .prev,
    .next {
        font-size: 20px;
        padding: 10px;
    }
}

/* Container de Categorías */
.categorias-container {
    padding: 40px 20px;
    text-align: center;
}

.categorias-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.categorias-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.categoria-item {
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 400px;
}

.categoria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.categoria-item h3 {
    padding: 15px 0;
    font-size: 1.5rem;
    background-color: #f5f5f5;
}

.categoria-item p {
    padding: 0 15px 15px;
    color: #141414;
    font-size: 1rem;
}

.categoria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

/* Responsive */
@media screen and (max-width: 768px) {
    .categoria-item {
        width: 90%;
    }

    .categoria-item img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .categoria-item img {
        height: 150px;
    }

    .categoria-item h3 {
        font-size: 1.2rem;
    }
}

.camara1 {
    display: inline-block;
    margin: 15px auto 20px;
    padding: 10px 20px;
    background: #3f2de2;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

/* Carrusel de la subpágina */
.sp-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 320px;
    overflow: hidden;
    background: #000;
}

.sp-slides {
    position: relative;
    width: 100%;
    height: 100%;
}



.sp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: spFade 15s infinite;
}

.sp-slide:nth-child(1) {
    animation-delay: 0s;
}

.sp-slide:nth-child(2) {
    animation-delay: 5s;
}

.sp-slide:nth-child(3) {
    animation-delay: 10s;
}


/* Ciclo de 3 slides: 15s total, cada una ~5s visible */
@keyframes spFade {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    /* funde entrada */
    27% {
        opacity: 1;
    }

    /* visible */
    33% {
        opacity: 0;
    }

    /* funde salida */
    100% {
        opacity: 0;
    }
}



/* Texto superpuesto centrado */
.sp-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(4px);
    padding: 12px 20px;
    border-radius: 12px;
    max-width: min(90%, 900px);
}

.sp-caption h2 {
    margin: 0 0 6px;
    font-size: clamp(1.6rem, 2.5vw + 1rem, 3rem);
    line-height: 1.1;
    letter-spacing: .5px;
}

.sp-caption p {
    margin: 0;
    font-size: clamp(0.95rem, 1vw + .6rem, 1.25rem);
    opacity: .95;
}

/* Pausa animación al pasar el mouse (opcional) */
.sp-hero:hover .sp-slide {
    animation-play-state: paused;
}

/* Responsivo */
@media (max-width: 768px) {
    .sp-hero {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .sp-hero {
        height: 42vh;
        min-height: 260px;
    }

    .sp-caption {
        padding: 10px 14px;
        border-radius: 10px;
    }
}

/* Información de Cámaras CCTV */
.info-cctv {
    background-color: #f8f8f8;
    /* Gris claro */
    padding: 40px 20px;
}

.info-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.info-image img {
    width: 150px;
    /* Ajusta tamaño del icono */
    max-width: 100%;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.info-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

.benefits {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.benefits li {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.info-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

.benefits {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.benefits li {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.info-image img {
    width: 150px;
    /* Ajusta tamaño del icono */
    max-width: 100%;
}

/* --- Adaptación para pantallas pequeñas --- */
@media (max-width: 768px) {
    .info-text h2 {
        font-size: 22px;
    }

    .info-text p,
    .benefits li {
        font-size: 14px;
    }

    .info-image img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .info-text h2 {
        font-size: 20px;
    }

    .info-text p,
    .benefits li {
        font-size: 13px;
    }

    .info-image img {
        width: 100px;
    }
}


/* Galería con efecto zoom */
.galeria-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.galeria-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease;
    pointer-events: none;
    /* desactiva clic */
}

.galeria-container img:hover {
    transform: scale(1.1);
}

.galeria-container h4 {
    text-align: center;
    margin-top: 8px;
    color: #333;
}

/* Carrusel: centrar y reducir tamaño */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 400px;
    /* altura fija para evitar pixelado */
    background: #002349;
    /* fondo para que contraste */
}

.carousel-slide img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* mantiene proporción sin recortar */
    display: block;
    margin: auto;
}

/* Galería: más grande con marco */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* más grande */
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border: 3px solid #ccc;
    /* marco */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}




/* Formulario Creativo */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-in-out;
    backdrop-filter: blur(5px);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0A0A23;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    transition: 0.3s ease;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    background-color: #fff;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.contact-form button:hover {
    background: linear-gradient(45deg, #0056b3, #003d80);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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




/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    font-family: Arial, sans-serif;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-text {
    font-size: 16px;
    font-weight: bold;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-text {
    font-family: Arial, sans-serif;
}

/* Fondo y distribución general */
.info-stats {
    background: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contenido central con los contadores */
.info-contenido {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #0f0;
    /* Verde neón para resaltar */
}

.stat p {
    font-size: 1.2rem;
}

/* Propaganda lateral */
.info-propaganda {
    max-width: 250px;
    text-align: center;
}

.info-propaganda h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.info-propaganda p {
    font-size: 1rem;
    opacity: 0.8;
}

.services-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: #111;
}

.service-card p {
    padding: 0 15px;
    color: #555;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    margin: 15px auto 20px;
    padding: 10px 20px;
    background: #00cc6f;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #009955;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Sección Quiénes Somos */
.quienes-somos {
    background: linear-gradient(to right, #0d2538, #1e3c54);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.qs-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.qs-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.qs-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.qs-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.qs-card img {
    max-width: 60px;
    margin-bottom: 15px;
}

.qs-card h3 {
    font-size: 2rem;
    color: #00d1ff;
}

.qs-btn {
    display: inline-block;
    background: #00d1ff;
    color: #0d2538;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.qs-btn:hover {
    background: #00a6cc;
}

.fade-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sección de Testimonios */

/* === Testimonios aislados === */
/* Sección general */
.testimonial-section {
    padding: 50px;
    text-align: center;
    background: #f9f9f9;
}

.testimonial-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

/* Carrusel */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

/* Slides */
.testimonial-slide {
    display: none;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-active {
    display: flex;
}

/* Imagen del cliente */
.testimonial-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ddd;
}

/* Texto */
.testimonial-text {
    max-width: 500px;
    text-align: left;
}

.testimonial-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-text h4 {
    color: #222;
    font-weight: bold;
}

/* Botones */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Sección Ubicación */
.map-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #0A0A23;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.map-button:hover {
    background-color: #1A1A40;
    transform: scale(1.05);
}

/* pie de pagina  */
footer {
    background: linear-gradient(135deg, #0a1f44, #142850);
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #00aaff;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #00aaff;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
}

/* Galería de Productos */
.galeria-productos {
    padding: 50px 20px;
    background: #f8f8f8;
    text-align: center;
}

.galeria-productos h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    font-weight: bold;
}

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

.producto {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.producto img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.producto h3 {
    font-size: 1.2rem;
    margin: 8px 0;
    color: #111;
}

.producto p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-productos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-productos {
        grid-template-columns: 1fr;
    }
}

.btn-cotizar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1310da;
    /* Verde WhatsApp */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cotizar:hover {
    background-color: #1ebe5d;
    /* Un poco más oscuro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 📱 Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .info-stats {
        flex-direction: column;
        text-align: center;
    }

    .info-contenido {
        flex-direction: column;
        gap: 20px;
    }

    .stat h2 {
        font-size: 2rem;
        /* Reducimos un poco el tamaño */
    }

    .stat p {
        font-size: 1rem;
    }

    .info-propaganda {
        max-width: 100%;
        /* Que ocupe todo el ancho */
        margin-top: 20px;
    }
}

/* ✅ Ajustes para móviles */
@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
        /* Cambia de fila a columna */
        text-align: center;
        /* Centra el texto en móviles */
    }

    .testimonial-img {
        width: 120px;
        /* Más pequeño en móviles */
        height: 120px;
        margin-bottom: 15px;
        /* Espacio entre foto y texto */
    }

    .testimonial-text {
        max-width: 100%;
        text-align: center;
        /* Texto centrado en móvil */
    }

    .testimonial-text p {
        font-size: 1rem;
        /* Un poco más compacto */
    }

    .testimonial-text h4 {
        font-size: 1.1rem;
    }
}