html body .hero-section {
            height: auto; /* Cambiado a auto para evitar ocultar contenido en pantallas reducidas */
            min-height: 58vh; /* Altura reducida: el hero deja de dominar la pantalla y cede protagonismo a la línea de vida */
            display: flex; /* Cambiado a flexbox para un centrado vertical impecable */
            align-items: stretch; /* Estira ambas columnas de arriba a abajo */
            background-color: #FFFFFF; /* Fondo blanco puro solicitado */
            position: relative;
            overflow: hidden; /* Ajustado para contener círculos de fondo */
            padding: 0; /* Sin paddings para estiramiento completo */
        }
html body .hero-content {
            width: 55%; /* Ocupa el 55% del ancho */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centrado vertical completo */
            padding: 120px 80px 60px 60px; /* Padding superior de 120px para librar el header fixed de 80px, padding inferior de 60px */
            z-index: 2;
            box-sizing: border-box;
        }
html body .hero-description {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 36px;
            line-height: 1.75;
            font-weight: 400;
        }
html body .hero-ctas {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
html body .hero-image-wrapper {
            position: absolute; /* Posicionamiento absoluto para estiramiento garantizado al 100% de la sección */
            top: 0;
            right: 0;
            bottom: 0;
            width: 45%; /* Ocupa el 45% del ancho */
            z-index: 1;
            margin: 0;
            padding: 0;
            overflow: hidden; /* Evita que el slider se desborde */
        }
html body .hero-image-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(95, 173, 65, 0.1) 0%, rgba(189, 124, 172, 0.05) 50%, rgba(255, 255, 255, 0) 80%);
            z-index: -1;
        }
html body .slider-container {
            width: 100%;
            height: 100%; /* Estiramiento completo de arriba a abajo */
            position: absolute; /* Cambiado a absolute en desktop para heredar la altura del flex parent estirado */
            top: 0;
            left: 0;
            overflow: hidden;
            border: none; /* Sin bordes simulados */
            border-radius: 0; /* Sin esquinas recortadas para integrarse a la pantalla */
            box-shadow: none; /* Sin sombras separadoras */
        }
html body .slider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }
html body .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
            background-color: var(--bg-light); /* Rosa muy suave exacto de fondo */
        }
html body .slide.active {
            opacity: 1;
            z-index: 2;
        }
html body .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ajuste para recortar y llenar de arriba a abajo */
        }
html body .slide img.img-slide-1 {
            object-position: center center !important;
            object-fit: cover !important;
        }
html body .slide img.img-slide-2 {
            object-position: 20% center !important;
            object-fit: cover !important;
        }
html body .slide img.img-slide-3 {
            object-position: center top !important;
            object-fit: cover !important; /* Regresa a cover para llenar el alto completo del split-screen */
        }
html body .slider-dots {
            position: absolute;
            bottom: 30px; /* Separado del fondo de pantalla */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
@keyframes float-reverse {
            0% { transform: translateY(0px); }
            50% { transform: translateY(12px); }
            100% { transform: translateY(0px); }
        }
@media (max-width: 768px) {html body .hero-description {
                font-size: 1.05rem;
            }
}
@keyframes fadeIn {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }
html body .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 999px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
html body .hero-btn-primary {
            background-color: var(--navy);
            color: #fff;
            box-shadow: 0 8px 20px rgba(31, 50, 134, 0.25);
        }
html body .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(31, 50, 134, 0.32);
            background-color: #18266a;
        }
html body .hero-btn-secondary {
            background-color: transparent;
            color: var(--navy);
            border-color: rgba(31, 50, 134, 0.25);
        }
html body .hero-btn-secondary:hover {
            border-color: var(--navy);
            background-color: rgba(31, 50, 134, 0.04);
            transform: translateY(-3px);
        }
html body .hero-ctas-center {
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 46px;
        }
html body .showcase-section {
            border-top: 1px solid var(--bg-light);
        }
html body .lifeline-eyebrow {
            display: inline-block;
            color: var(--rose);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
html body .chequeo-ctas .hero-btn { padding: 11px 18px; font-size: 14px; }