/* WOW Slider Styles - Versión Profesional Mejorada */
.wowslider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Ajuste navbar */
body.has-navbar .wowslider-container {
    height: calc(100vh - 70px);
}

@media (max-width: 768px) {
    body.has-navbar .wowslider-container {
        height: calc(100vh - 60px);
    }
}

.ws_images,
.ws_images ul,
.ws_images li {
    width: 100%;
    height: 100%;
}

.ws_images {
    position: relative;
    overflow: hidden;
}

.ws_images ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ws_images li {
    float: left;
    position: relative;
    overflow: hidden;
}

.ws_images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.ws_images li:hover img {
    transform: scale(1.08);
}

/* ================= CAPTION PROFESIONAL ================= */

.slide-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 0 20px;
}

/* 🔥 H2 3D elegante + animación fluida */
.slide-caption h2 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;

    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 10px rgba(0,0,0,0.5);

    animation: smoothReveal 1.2s ease both,
               floatText 4s ease-in-out infinite 1.2s;
}

/* ✨ P fluorescente moderno */
.slide-caption p {
    font-size: clamp(1rem, 4vw, 1.8rem);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-weight: 500;
    color: #fff;

    text-shadow:
        0 0 5px #00ff88,
        0 0 10px #00ff88,
        0 0 20px #00ff88;

    animation: smoothReveal 1.5s ease both,
               softGlow 2.5s ease-in-out infinite 1.5s;
}

/* Animación de entrada profesional */
@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Movimiento sutil continuo (muy elegante) */
@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Glow animado suave */
@keyframes softGlow {
    0%, 100% {
        text-shadow:
            0 0 5px #00ff88,
            0 0 10px #00ff88,
            0 0 20px #00ff88;
    }
    50% {
        text-shadow:
            0 0 10px #00ff88,
            0 0 20px #00ff88,
            0 0 35px #00ff88;
    }
}

/* ================= BOTÓN ================= */

.slide-btn {
    display: inline-block;
    padding: clamp(0.8rem, 3vw, 1.2rem) clamp(1.5rem, 5vw, 2.5rem);
    background: linear-gradient(135deg, #00ff88, #00cc88);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,255,136,0.4);
}

/* ================= CONTROLES ================= */

.ws_prev,
.ws_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.ws_prev { left: 30px; }
.ws_next { right: 30px; }

.ws_prev:hover,
.ws_next:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}
