/* Estilos para las pestañas (muy básicos, ajusta a tu diseño) */
        .tabs {
            display: flex;
            margin-bottom: 20px;
            background-color: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .tab-button {
            padding: 12px 25px;
            cursor: pointer;
            border: none;
            background-color: transparent;
            font-size: 16px;
            color: #555;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .tab-button:hover {
            background-color: #d0d0d0;
        }

        .tab-button.active {
            background-color: #007bff;
            color: white;
            border-bottom: 3px solid #0056b3;
        }

        .tab-content {
            display: none; /* Por defecto, todas las pestañas están ocultas */
            width: 100%;
            max-width: 1000px;
        }

        .tab-content.active {
            display: block; /* La pestaña activa se muestra */
        }

        /* Estilos del carrusel (los que ya tienes) */
        .carousel-container {
            width: 90%;
            max-width: 1000px; /* Ajustado para estar dentro de las pestañas */
            margin: 30px auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            position: relative;
            background-color: #fff;
            padding: 15px;
            box-sizing: border-box;
        }

        .carousel-title {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s ease-in-out;
        }

        .carousel-track img {
            width: 150px;
            height: 90px;
            object-fit: cover;
            margin-right: 30px;
            flex-shrink: 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .carousel-track img:hover {
            transform: scale(1.03);
        }

        @media (max-width: 768px) {
            .tab-button {
                padding: 10px 15px;
                font-size: 14px;
            }
            .carousel-container {
                width: 95%;
                padding: 10px;
                margin: 20px auto;
            }
            .carousel-track img {
                width: 150px;
                height: 70px;
                margin-right: 20px;
            }
        }

        @media (max-width: 480px) {
            .tab-button {
                font-size: 12px;
                padding: 8px 10px;
            }
            .carousel-track img {
                width: 120px;
                height: 60px;
                margin-right: 15px;
            }
        }