 /*Primer Carrusel */
        /* Estilos base */
        #inicio {
            background: #051e34;
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80%;
        }

        #slider-container {
            display: flex;
            width: 1600%;
            height: 100%;
            transition: transform 1s ease-in-out;
        }

        .slide {
            flex: 0 0 6.25%;
            height: 100%;
            position: relative;
        }

        .slide a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-title {
            position: absolute;
            bottom: 15%;
            left: 5%;
            color: white;
            padding: 1.5% 3%;
            font-size: 2.5vw;
            background: rgba(0,0,0,0.4);
            border-radius: 5px;
        }

        .bottom-text {
            background: #051e34;
            position: absolute;
            top: 80%;
            left: 0;
            width: 100%;
            height: 20%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.5vw;
        }

        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            width: 4vw;
            height: 4vw;
            min-width: 40px;
            min-height: 40px;
            border-radius: 50%;
            cursor: pointer;
            backdrop-filter: blur(3px);
            opacity: 0.8;
            transition: all 0.3s;
            z-index: 10;
            font-size: 2.5vw;
            color: rgba(0,0,0,0.8);
        }

        .slider-control.prev { left: 2%; }
        .slider-control.next { right: 2%; }

        .slider-control:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        /* Estilos móvil */
        @media (max-width: 768px) {
            #inicio {
                height: 70vh;
            }

            .slider-wrapper {
                height: 65%;
            }

            .slide-title {
                font-size: 4vw;
                padding: 3% 5%;
                bottom: 10%;
            }

            .bottom-text {
                height: 25%;
                top: 65%;
                font-size: 4vw;
                padding: 0 5%;
                text-align: center;
            }

            .slider-control {
                width: 8vw;
                height: 8vw;
                min-width: 30px;
                min-height: 30px;
                font-size: 5vw;
            }
        }

        @media (max-width: 480px) {
            .slide-title {
                font-size: 5vw;
                left: 3%;
                bottom: 5%;
            }
            
            .bottom-text {
                font-size: 4.5vw;
                height: 30%;
                top: 60%;
            }
        }

     /*Primer Carrusel Fin*/