/*
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
        }
        */
        
        
        .align-items-center {
    align-items: center !important;
     width: 1400px;
     margin: 0 auto; 
}
        #masthead {
 
    margin: 0px auto;
    
        }
            .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }

        .banner-carousel {
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            background: #000;
        }

        /* Barra de progreso/tiempo */
        .progress-bar-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 10;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4ECDC4, #45B7D1);
            width: 0%;
            transition: width 0.1s linear;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            width: 100%;
            min-width: 100%;
            flex-shrink: 0;
            position: relative;
        }

        /* Estilo para enlaces de banner */
        .carousel-slide a {
            display: block;
            width: 100%;
            cursor: pointer;
        }

        .carousel-slide a:focus {
            outline: 3px solid #4ECDC4;
            outline-offset: -3px;
        }

        .carousel-slide picture {
            display: block;
            width: 100%;
        }

        .carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Controles de navegación */
        .carousel-controls {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 20px;
            border-radius: 30px;
            z-index: 10;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: #fff;
            transform: scale(1.1);
        }

        .control-btn:active {
            transform: scale(0.95);
        }

        /* Botón play/pause */
        .play-pause-btn {
            font-size: 14px;
        }

        /* Indicadores de puntos */
        .carousel-indicators {
            display: flex;
            gap: 8px;
            margin-bottom: -1.0rem;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: #fff;
            width: 25px;
            border-radius: 5px;
        }

        /* Flechas de navegación laterales */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            display: none;
        }

        .carousel-nav:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        /* Contador de slides */
        .slide-counter {
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 0 10px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }

            .carousel-controls {
                bottom: 26px;
                padding: 8px 15px;
                gap: 10px;
            }

            .control-btn {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .slide-counter {
                font-size: 12px;
                width: 50px;
                text-align: center;
            }
            
                    .align-items-center {
    align-items: center !important;
     width: 100%;
     margin: 0 auto; 
}
        }