        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

       .carousel-container {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .carousel-track {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
        }

        .slide {
            width: 20%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ajusta la imagen al contenedor */
            display: block;
        }

        .slide-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
            pointer-events: none; /* Evita que el texto interfiera con clics */
        }

        /* Botones de navegación */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 20px;
            z-index: 10;
            transition: background 0.3s;
        }

        .arrow:hover { background: rgba(0, 0, 0, 0.8); }
        .arrow-left { left: 15px; }
        .arrow-right { right: 15px; }

        /* Puntos indicadores */
        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 14px;
            height: 14px;
            background-color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0,0,0,0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background-color: #fff;
            transform: scale(1.2);
            box-shadow: 0 0 5px rgba(0,0,0,0.5);
        }