.elementor-5079 .elementor-element.elementor-element-280c253{--display:flex;}.elementor-5079 .elementor-element.elementor-element-92d6b90{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6e6232b *//* VIDEO DE FONDO TOTAL */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #000; /* Fondo negro mientras carga el video */
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    /* Forzamos que el video ignore clics para que no se pause al tocar los botones */
    pointer-events: none; 
}

/* Ocultar posibles controles que el navegador quiera poner */
video::-webkit-media-controls {
    display: none !important;
}
/* 4. MENÚ DE HAMBURGUESA */
    .k-nav-trigger {
        position: fixed !important;
        top: 30px !important;
        right: 30px !important;
        z-index: 1000 !important;
        width: 60px !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: 0.3s !important;
    }

    .k-nav-trigger:hover { background: rgba(255, 255, 255, 0.2) !important; }

    .k-nav-trigger span {
        width: 25px !important;
        height: 2px !important;
        background: white !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
    }

    /* Panel del Menú Lateral */
    .k-side-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Escondido */
        width: 300px !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        z-index: 999 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 40px !important;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .k-side-menu.open { right: 0 !important; }

    .k-side-menu a {
        color: white !important;
        text-decoration: none !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        margin-bottom: 25px !important;
        opacity: 0.8 !important;
        transition: 0.3s !important;
    }

    .k-side-menu a:hover { opacity: 1 !important; padding-left: 10px !important; color: #00a0e3 !important; }

    /* Animación de la X */
    .k-nav-trigger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
    .k-nav-trigger.active span:nth-child(2) { opacity: 0 !important; }
    .k-nav-trigger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2b7a10b *//* CONTENEDOR PRINCIPAL */
.consultation-banner {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Asegúrate de que este contenedor esté sobre el fondo de gotas */
}

/* TARJETA CON EFECTO CRISTAL (GLASSMORPHISM) */
.glass-card {
    background: rgba(255, 255, 255, 0.95); /* Blanco casi sólido para legibilidad, o 0.8 para más transparencia */
    backdrop-filter: blur(10px); /* Desenfoca las gotas de fondo suavemente */
    border-radius: 40px; /* Bordes extra redondeados como las tarjetas superiores */
    padding: 50px 40px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* TEXTOS */
.banner-title {
    color: #003366; /* Azul oscuro KÖSTER */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.banner-text {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BOTÓN WHATSAPP ESTILIZADO */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    background-color: #21bd5b;
}

.btn-whatsapp .icon {
    width: 25px;
    height: 25px;
    margin-right: 12px;
    filter: brightness(0) invert(1); /* Pone el icono de WhatsApp en blanco si lo deseas */
}

/* AJUSTE PARA MÓVILES */
@media (max-width: 768px) {
    .glass-card {
        padding: 30px 20px;
        border-radius: 30px;
    }
    .banner-title {
        font-size: 24px;
    }
}/* End custom CSS */