.elementor-405 .elementor-element.elementor-element-8d6a8ea{--display:flex;--min-height:931px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-405 .elementor-element.elementor-element-8d6a8ea:not(.elementor-motion-effects-element-type-background), .elementor-405 .elementor-element.elementor-element-8d6a8ea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}body.elementor-page-405:not(.elementor-motion-effects-element-type-background), body.elementor-page-405 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}@media(max-width:767px){.elementor-405 .elementor-element.elementor-element-8d6a8ea{--min-height:745px;}.elementor-405 .elementor-element.elementor-element-0418d88{margin:-4% 0% calc(var(--kit-widget-spacing, 0px) + -3%) -3%;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-405 .elementor-element.elementor-element-0418d88.elementor-element{--align-self:flex-start;}}/* Start custom CSS for html, class: .elementor-element-0418d88 *//* Forzar que el widget ocupe todo el ancho sin importar el contenedor */
.split-wrapper-main {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed; /* Esto asegura que ocupe toda la pantalla */
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.panel-split {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Efecto de expansión en Desktop */
@media (min-width: 769px) {
    .panel-split:hover {
        flex: 1.4;
    }
}

/* Imágenes de Fondo */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
    z-index: 1;
}

.left .bg-image {
    background-image: url('https://grupohuna.com.ar/wp-content/uploads/2026/03/WhatsApp-Image-2026-03-05-at-11.52.17-1.jpeg');
}

.right .bg-image {
    background-image: url('https://grupohuna.com.ar/wp-content/uploads/2026/03/FONDO-WEB-7.png');
}

.panel-split:hover .bg-image {
    transform: scale(1.1);
}

/* Overlay Oscuro */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease;
    z-index: 2;
}

.panel-split:hover .overlay-dark {
    background: rgba(45, 10, 10, 0.4); /* Tinte bordó sutil al hover */
}

/* Contenido */
.content-box {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.content-box img {
    max-width: 320px;
    height: auto;
    transition: transform 0.5s ease;
}

/* Botón Estilo Figma */
.btn-ingresar {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; 
    padding: 12px 45px;
    background: #FFFFFF9E;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.panel-split:hover .btn-ingresar {
    background: #d6d4c8;
    transform: translateY(-5px);
}

/* Ajuste para Móvil */
@media (max-width: 768px) {
    .split-wrapper-main {
        flex-direction: column;
        position: relative; /* En móvil no es fijo para dejar scroll */
        height: 100vh;
    }
    .panel-split {
        flex: 1;
    }
    .content-box img {
        max-width: 200px;
    }
}/* End custom CSS */