        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header y navegación */
        header {

            background-color: #cce742;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .img-logo {
            width: 200px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3498db;
            width: 20%;
        }

        .logo span {
            color: #e74c3c;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a {
            color: rgb(41, 41, 41);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #3498db;
        }

        /* Hero section */
        .hero {
            background:
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/cropped-canchas-sinteticas-futbol-5-y-futbol-6-para-alquiler-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
            padding: 8rem 0;
            max-height: 70vh;
            display: flex;
            align-items: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #c0392b;
        }

        .hero img {
            max-width: 90vw;
            /* Limita el ancho máximo al 90% del viewport */
            height: auto;
            max-height: 120px;
            margin: 0 auto 2rem auto;
            display: block;
            object-fit: contain;
            width: auto;
            /* Mantiene la proporción */
        }

        /* Responsive para móviles */
        @media (max-width: 768px) {
            .hero img {
                max-width: 85vw;
                /* Un poco más ajustado en móviles */
                max-height: 100px;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero img {
                max-width: 80vw;
                /* Aún más ajustado en móviles pequeños */
                max-height: 80px;
                margin-bottom: 1rem;
            }
        }

        /* Secciones generales */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Sección de canchas */
        /* Sección de canchas - MEJORADO PARA MÓVILES */
        /* Sección de canchas - CORREGIDO */
        .canchas-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cancha-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            height: auto;
            min-height: 450px;
        }

        .cancha-img {
            height: 220px;
            /* ¡ESTA LÍNEA ES ESENCIAL! */
            background-size: cover;
            background-position: center;
            background-color: #3498db;
            flex-shrink: 0;
            max-width: 90%;
            width: 100%;
            /* Añadir esto también */
            margin: 0 auto;
            /* Centrar la imagen */
        }

        .cancha-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .cancha-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .cancha-info p {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            line-height: 1.5;
        }

        .cancha-info .btn {
            margin-top: auto;
            text-align: center;
            display: block;
            text-decoration: none;
            background-color: #25D366;
        }

        .cancha-info .btn:hover {
            background-color: #128C7E;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .canchas-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                max-width: 500px;
            }

            .cancha-card {
                min-height: 400px;
            }

            .cancha-img {
                height: 180px;
                /* Altura para móviles */
            }
        }

        @media (max-width: 480px) {
            .canchas-container {
                gap: 1.5rem;
            }

            .cancha-card {
                min-height: 380px;
            }

            .cancha-img {
                height: 160px;
                /* Altura para móviles pequeños */
            }
        }

        .equipo-container {
            position: relative;
            padding: 6rem 0;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .equipo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/cropped-entrenamiento-futbol-ibague.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
        }

        .equipo-container h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .equipo-container p {
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        /* Sección de ubicación */
        .ubicacion-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .mapa {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .mapa iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .info-ubicacion h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .info-ubicacion p {
            margin-bottom: 1rem;
            color: #7f8c8d;
        }

        /* Sección de contacto */
        .contacto-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contacto-info {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contacto-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .contacto-info p {
            margin-bottom: 1rem;
            color: #7f8c8d;
        }

        .form-contacto {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #e00d7e;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: #e74c3c;
        }

        .footer-links h4,
        .footer-contacto h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #3498db;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: #3498db;
        }

        .copyright {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }

            nav ul {
                margin-top: 1rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .ubicacion-container {
                grid-template-columns: 1fr;
            }
        }




        /* Sección de Ubicaciones Cercanas */
        #ubicaciones-cercanas {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }

        .logos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            max-width: 1100px;
            margin: 0 auto;
            align-items: center;
        }

        .logo-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: translateY(-8px);
        }

        .logo-img {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .logo-item:hover .logo-img {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }

        .logo-img img {
            max-width: 90%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s ease;
        }

        .logo-item:hover .logo-img img {
            filter: grayscale(0%);
        }

        .logo-item p {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1rem;
            margin: 0;
            transition: color 0.3s ease;
        }

        .logo-item:hover p {
            color: #3498db;
        }

        /* Estilos responsivos */
        @media (max-width: 1024px) {
            .logos-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .logos-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.8rem;
            }

            .logo-img {
                height: 130px;
                padding: 1.5rem;
            }

            .logo-img img {
                max-height: 70px;
            }

            .logo-item p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logos-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }

            .logo-img {
                height: 110px;
                padding: 1rem;
            }

            .logo-img img {
                max-height: 60px;
            }

            .logo-item p {
                font-size: 0.9rem;
            }
        }

        /* Ajustes específicos para logos con diferentes proporciones */
        .logo-img img[src*="logo-Multi"],
        .logo-img img[src*="logo-laestacion"],
        .logo-img img[src*="LOGOS-DE-MERCACENTRO"],
        .logo-img img[src*="Olimpica-logo"],
        .logo-img img[src*="OIP"] {
            /* Ajustes generales para todos los logos */
            object-fit: contain;
        }

        /* Si algún logo específico necesita ajustes individuales */
        .logo-img img[src*="OIP"] {
            max-height: 65px;
            /* Ajusta según necesidad */
        }

        .logo-img img[src*="Olimpica-logo"] {
            max-height: 75px;
            /* Ajusta según necesidad */
        }

/* Sección de Campeonatos */
/* Sección Campeonatos */
#campeonatos {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Contenedor Imagen + Texto Responsivo */
.contenedor-imagen-texto {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contenedor-imagen-texto:hover {
    transform: translateY(-5px);
}

/* Estilos para la imagen */
.contenedor-imagen {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.contenedor-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contenedor-imagen-texto:hover .contenedor-imagen img {
    transform: scale(1.03);
}

/* Estilos para el texto */
.contenedor-texto {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenedor-texto h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contenedor-texto h4 {
    color: #3498db;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.contenedor-texto p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Lista de torneos */
.detalles-campeonato ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.detalles-campeonato li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.detalles-campeonato li:last-child {
    border-bottom: none;
}

.detalles-campeonato strong {
    color: #2c3e50;
}

/* Botones de la sección */
.cta-campeonato {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-campeonato {
    background-color: #e74c3c;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.btn-campeonato:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secundario {
    background-color: transparent;
    color: #3498db;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.btn-secundario:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px);
}

/* Comportamiento responsivo */
/* Para PC: imagen a la izquierda, texto a la derecha */
@media (min-width: 769px) {
    .contenedor-imagen-texto {
        flex-direction: row;
    }
}

/* Para móviles: imagen arriba, texto abajo */
@media (max-width: 768px) {
    .contenedor-imagen-texto {
        flex-direction: column;
    }
    
    .contenedor-imagen {
        min-height: 250px;
        max-height: 250px;
    }
    
    .contenedor-texto {
        padding: 2rem;
    }
    
    .contenedor-texto h3 {
        font-size: 1.5rem;
    }
    
    .cta-campeonato {
        flex-direction: column;
    }
    
    .cta-campeonato .btn {
        width: 100%;
        text-align: center;
    }
}

/* Sección Galería 16:9 */
#galeria {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.galeria-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.galeria-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Contenedor 16:9 - MÉTODO PERFECTO */
.aspect-ratio-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 9/16 = 0.5625 * 100 = 56.25% (16:9 ratio) */
    overflow: hidden;
    background-color: #2c3e50;
}

.aspect-ratio-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover .aspect-ratio-16-9 img {
    transform: scale(1.1);
}

/* Overlay con efecto */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.galeria-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.galeria-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* CTA de galería */
.galeria-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 10px;
    color: white;
}

.galeria-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.galeria-cta .btn {
    background-color: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.galeria-cta .btn:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* RESPONSIVE DESIGN */
/* Tablet */
@media (max-width: 1024px) {
    .galeria-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Tablet pequeña */
@media (max-width: 768px) {
    .galeria-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .galeria-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .aspect-ratio-16-9 {
        padding-top: 56.25%; /* Mantiene el ratio 16:9 en móvil */
    }
    
    .galeria-cta {
        padding: 1.5rem;
    }
    
    .galeria-cta p {
        font-size: 1rem;
    }
}

/* Efecto de carga para imágenes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.aspect-ratio-16-9 img {
    animation: fadeIn 0.5s ease;
}

/* Sección Carta del Restaurante */
#carta-restaurante {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

#carta-restaurante .section-title h2 {
    color: white;
    margin-bottom: 0.5rem;
}

#carta-restaurante .section-title p {
    color: #bdc3c7;
    font-size: 1.1rem;
}

/* Contenedor del carrusel */
.carrusel-container {
    position: relative;
    max-width: 350px; /* Más angosto para formato 9:19 */
    margin: 2rem auto 3rem;
    padding: 0 50px;
}

.carrusel {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

.carrusel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Elementos del carrusel */
.carrusel-item {
    min-width: 100%;
    position: relative;
}

/* Ratio 9:19 - Formato vertical tipo story */
.aspect-ratio-9-19 {
    position: relative;
    width: 100%;
    padding-top: 211.11%; /* (19/9)*100 = 211.11% */
    overflow: hidden;
    background-color: #000;
}

.aspect-ratio-9-19 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carrusel-item:hover .aspect-ratio-9-19 img {
    transform: scale(1.05);
}

/* Overlay simplificado */
.carta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.7) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carta-overlay h3, h4, h5 {
    font-size: 2rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0.5rem 1rem;
}

/* Botones del carrusel */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carrusel-btn:hover {
    background: rgba(231, 76, 60, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Indicadores */
.carrusel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #e74c3c;
    transform: scale(1.3);
}

.indicator:hover {
    background: #e74c3c;
}

/* Botón de WhatsApp */
.carta-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 768px) {
    .carrusel-container {
        max-width: 300px;
        padding: 0 40px;
    }
    
    .carta-overlay h3 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .carrusel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .carrusel-container {
        max-width: 250px;
        padding: 0 35px;
    }
    
    .carta-overlay h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .carrusel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}