/* ======================================================= */
/* 1. VARIABLES Y RESET GLOBAL */
/* ======================================================= */
:root {
    /* Paleta Principal */
    --color-azul-principal: #004AAD;
    --color-verde-enfasis: #32CD32; /* Verde brillante para detalles */
    --color-verde-oscuro: #00b300;  /* Verde corporativo para botones/secciones */
    --color-texto-claro: #FFFFFF;
    --color-fondo-claro: #fff;
    --color-dropdown-fondo: rgba(0, 74, 173, 0.95);
    
    /* Configuración */
    --transition-speed: 0.28s;
    --header-height: 88px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-fondo-claro);
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ======================================================= */
/* 2. TOP BAR (Barra superior corporativa) */
/* ======================================================= */
#top-bar {
    background-color: #004a7c; 
    color: #ffffff; 
    padding: 8px 30px;
    font-size: 0.85em;
    font-weight: 400; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

#top-bar .contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 35px; 
}

#top-bar .contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#top-bar .contact-info a:hover {
    color: #ffd700; 
}

#top-bar .icon {
    margin-right: 8px;
    color: #ffd700; 
}

#top-bar .access-link {
    background-color: #00609b; 
    padding: 8px 15px;
    margin: -8px 0; 
    border-left: none; 
}

#top-bar .access-link a {
    font-weight: 600; 
}

/* Ticker (Texto en movimiento) */
.ticker-container {
    flex-grow: 1;
    max-width: 60%;
    overflow: hidden;
    height: 1.2em;
}

#futuristic-ticker {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out; 
}

#futuristic-ticker li {
    line-height: 1.2em; 
    white-space: nowrap;
}

/* ======================================================= */
/* 3. HEADER / NAVBAR PRINCIPAL */
/* ======================================================= */
#main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    background: linear-gradient(180deg, var(--color-azul-principal), #003680);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

#main-header.sticky-nav {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    background: linear-gradient(180deg, rgba(0, 58, 120, 0.98), #002a54);
}

.navbar {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 12px;
    height: var(--header-height);
}

.logo {
    color: var(--color-texto-claro);
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .mark {
    display: none; 
}
.logo .logo-img {
    /* Altura máxima para que entre en el header de 88px */
    max-height: 55px; 
    
    /* Mantiene la proporción original */
    width: auto; 
    
    /* Espacio entre la imagen y el texto (si usas texto) */
    margin-right: 12px; 
    
    /* Asegura que se comporte bien con flexbox */
    display: block;
    object-fit: contain;
}


.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 10px 16px;
    display: inline-block;
    font-weight: 700;
    border-radius: 6px;
    transition: color var(--transition-speed), background var(--transition-speed);
}

.nav-links a:hover {
    color: var(--color-verde-enfasis);
    background: rgba(255, 255, 255, 0.03);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
    background: #ffffff;
    color: var(--color-azul-principal);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* 🚨 NUEVO: Estilo para el botón Padre (Dropdown) cuando es la página activa 🚨 */
.nav-links button.active {
    /* Aplicamos los mismos estilos que los enlaces activos */
    background: #ffffff;
    color: var(--color-azul-principal) !important; /* Usamos !important para asegurar que sobrescribe el estilo de .dropdown .nav-btn */
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    /* Aseguramos que el ícono también se ponga azul */
}

/* 🚨 NUEVO: Estilo para el ícono SVG dentro del botón activo 🚨 */
.nav-links button.active svg {
    fill: var(--color-azul-principal) !important;
    color: var(--color-azul-principal) !important;
}

/* 🚨 NUEVO: Estilo para Submenú activo 🚨 */
.dropdown-menu a.active {
    /* Aquí definimos cómo se ve el enlace activo dentro del dropdown */
    background: var(--color-verde-enfasis) !important;
    color: var(--color-azul-principal) !important;
    font-weight: 700;
    /* Quitamos el hover para que se mantenga el color */
}

/* Esto va en tu style.css */
.submenu-desplegable {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 9999;

    /* --- EL SECRETO DEL PUENTE INVISIBLE --- */
    border-top: 20px solid transparent; /* Crea espacio invisible "agarrable" por el mouse */
    margin-top: -10px; /* Sube el menú para que el espacio invisible toque el botón de arriba */
    background-clip: padding-box; /* Evita que el fondo blanco pinte el borde transparente */
}

/* Mostrar al pasar el mouse por el padre */
.con-submenu:hover .submenu-desplegable {
    display: block;
}

/* Botones CTA Header */
.btn-afiliate {
    background-color: var(--color-verde-enfasis);
    color: var(--color-azul-principal);
    padding: 10px 26px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 800;
    margin-left: 18px;
    box-shadow: 0 6px 16px rgba(50, 205, 50, 0.18);
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.btn-afiliate:hover {
    background: var(--color-azul-principal);
    color: var(--color-verde-enfasis);
    border: 2px solid var(--color-verde-enfasis);
    transform: translateY(-2px);
}

.mobile-afiliate {
    display: none;
    width: 100%;
    text-align: center;
    padding: 8px 16px;
}

.mobile-afiliate .btn-afiliate {
    display: inline-block;
    margin: 6px 0;
    width: 86%;
}

/* Dropdown Menú */
.dropdown > button {
    color: #fff;
    border: none;
    color: inherit;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 6px;
}

.dropdown[aria-expanded="true"] > button {
    color: var(--color-verde-enfasis);
    background: rgba(255, 255, 255, 0.03);
}

.dropdown-menu {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 0;
    min-width: 240px;
    background: var(--color-dropdown-fondo);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    list-style: none;
    padding: 8px 0;
    display: none;
    z-index: 1300;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--color-texto-claro);
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--color-verde-enfasis);
    color: var(--color-azul-principal);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown[aria-expanded="true"] > .dropdown-menu {
    display: block;
}

/* Estilos Específicos Botón Servicios (Override blanco) */
.dropdown .nav-btn {
    background-color: white !important; 
    color: #333 !important; 
    border: 1px solid #ddd; 
    padding: 8px 12px;
    border-radius: 4px;
}

.dropdown .nav-btn svg {
    fill: #333 !important; 
    color: #333 !important; 
}

.dropdown .nav-btn:hover,
.dropdown.aria-expanded .nav-btn {
    background-color: #f0f0f0 !important; 
    color: #0056b3 !important; 
    border-color: #0056b3; 
}

.dropdown .nav-btn:hover svg,
.dropdown.aria-expanded .nav-btn svg {
    fill: #0056b3 !important;
    color: #0056b3 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none; 
    background: transparent;
    border: none;
    color: var(--color-verde-enfasis);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* ======================================================= */
/* 4. HERO SLIDER */
/* ======================================================= */
#hero-slider {
    width: 100%;
    height: 90vh;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 74, 173, 0.05), rgba(0, 0, 0, 0.03));
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: contrast(0.95) saturate(0.95);
}

.slide-content {
    position: relative;
    z-index: 4;
    background: rgba(0, 74, 173, 0.85);
    color: var(--color-texto-claro);
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 680px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    border-left: 6px solid var(--color-verde-enfasis);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.slide-content.active-content {
    opacity: 1;
    transform: translateY(0);
}

/* --- 1. ESTILO PARA SLIDES CENTRADOS Y BAJADOS (1, 4, 5, 6) --- */
/* Se quitó el 3 de aquí para moverlo a la derecha */
.slide:nth-child(1) .slide-content,
.slide:nth-child(3) .slide-content,
.slide:nth-child(4) .slide-content,
.slide:nth-child(6) .slide-content {
    margin-top: 10vh; 
}

/* --- 2. ESTILO PARA SLIDE 3 (MASCOTAS) - ESQUINA INFERIOR DERECHA --- */
.slide:nth-child(5) {
    justify-content: flex-end; /* Empuja todo el bloque a la derecha */
    align-items: flex-end;     /* Empuja todo el bloque hacia abajo */
    padding-bottom: 80px;      /* Margen desde el fondo */
}

.slide:nth-child(5) .slide-content {
    margin: 0; /* Resetea márgenes */
    text-align: right; /* Alinea el texto a la derecha */
    border-left: none; /* Quita el borde izquierdo verde */
    border-right: 6px solid var(--color-verde-enfasis); /* Pone el borde a la derecha */
}

.slide-content h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
    line-height: 1.05;
    font-weight: 800;
}

.slide-content p {
    font-size: 1.15rem;
    margin-bottom: 22px;
}

.btn-cta {
    background-color: var(--color-verde-enfasis);
    color: var(--color-azul-principal);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: #28a745;
    color: #012a3a;
}

/* Hero Slider Green Buttons Override */
#hero-slider .btn-cta {
    background-color: var(--color-verde-oscuro);
    color: #fff;
}

#hero-slider .btn-cta:hover {
    background-color: #008000;
}

/* El Slide 2 se mantiene diferente (configuración por defecto derecha/abajo) */
.slide-2 .slide-content {
    align-self: flex-end;
    margin-left: 5%;
    margin-bottom: 40px;
}

/* Controles Slider */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-verde-enfasis);
    color: var(--color-azul-principal);
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    font-size: 1.4rem;
    border-radius: 50%;
    opacity: 0.95;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 50;
    transition: transform var(--transition-speed);
}

.slider-nav.prev { left: 18px; }
.slider-nav.next { right: 18px; }

.slider-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: #28a745;
}

.slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: inline-block;
}

.dot[aria-current="true"] {
    background: var(--color-verde-enfasis);
    border: 2px solid var(--color-texto-claro);
    transform: scale(1.08);
}

/* ======================================================= */
/* 5. SECCIÓN: BENEFICIOS DESTACADOS */
/* ======================================================= */
#beneficios-destacados {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 5px solid var(--color-verde-oscuro);
}

#beneficios-destacados h2 {
    font-size: 3rem;
    color: var(--color-azul-principal);
    margin-bottom: 10px;
}

#beneficios-destacados p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 179, 0, 0.3);
    border-color: var(--color-verde-oscuro);
}

.beneficio-icon {
    font-size: 3rem;
    color: var(--color-verde-oscuro);
    margin-bottom: 15px;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    color: var(--color-azul-principal);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.beneficio-card p {
    color: #777;
    font-size: 0.95rem;
}

/* ======================================================= */
/* 6. : CONTACTO PROFESIONAL */
/* =====SECCIÓN================================================== */
#contacto-profesional {
    padding: 0;
    background-color: #f0f4f8;
}

.profesional-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.image-column-contact {
    flex: 1;
    min-width: 40%;
    max-width: 50%;
}

.image-column-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* 2. OVERLAY (Capa oscura para mejorar la legibilidad del texto blanco) */

/* 3. Contenido del formulario */
.form-content {
    position: relative;
    z-index: 2; /* Asegura que el texto y el formulario estén por encima del overlay */
}

.form-column-contact h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    border-left: 5px solid var(--color-verde-oscuro);
    padding-left: 15px;
}

.form-column-contact p {
    margin-bottom: 30px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
}

.form-column-contact .btn-cta {
    display: inline-block;
    background-color: var(--color-verde-oscuro);
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-column-contact .btn-cta:hover {
    background-color: #008000;
}

/* ======================================================= */
/* 7. SECCIÓN: CONVENIOS NACIONALES */
/* ======================================================= */
#convenios-nacionales {
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
}

.convenios-header {
    margin-bottom: 40px;
}

.convenios-header h2 {
    font-size: 3rem;
    color: var(--color-verde-oscuro);
    margin-bottom: 10px;
}

.convenios-header p {
    color: #f0f4f8;
}

.convenios-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.convenios-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: 1160px;
    overflow-y: hidden;
    scrollbar-color: var(--color-verde-oscuro) var(--color-azul-principal);
    scrollbar-width: thin;
}

.convenios-slider::-webkit-scrollbar {
    height: 8px;
}

.convenios-slider::-webkit-scrollbar-track {
    background: var(--color-azul-principal);
}

.convenios-slider::-webkit-scrollbar-thumb {
    background-color: var(--color-verde-oscuro);
    border-radius: 20px;
    border: 2px solid var(--color-azul-principal);
}

.convenio-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.convenio-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 179, 0, 0.3);
}

.convenio-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.convenio-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.convenio-info {
    padding: 15px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.convenio-info h3 {
    font-size: 1.4rem;
    color: var(--color-azul-principal);
    margin-bottom: 5px;
    line-height: 1.3;
}

.convenio-info p {
    font-size: 0.9rem;
    color: #555;
}

.convenio-cta {
    display: block;
    margin-top: 15px;
    color: var(--color-verde-oscuro);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.convenio-cta:hover {
    color: #008000;
    text-decoration: underline;
}

.slider-nav-convenios {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-verde-oscuro);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 10;
    border-radius: 4px;
    line-height: 1;
    transition: background-color 0.3s;
}

.slider-nav-convenios:hover {
    background-color: #008000;
}

.slider-nav-convenios.prev-c { left: 0; }
.slider-nav-convenios.next-c { right: 0; }

/* ======================================================= */
/* 8. SECCIÓN: SUSCRIPCIÓN */
/* ======================================================= */
#suscripcion-tarjeta {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.suscripcion-header {
    margin-bottom: 50px;
}

.suscripcion-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.suscripcion-header p {
    font-size: 1.2rem;
    color: #99aabd;
}

.suscripcion-slider-wrapper {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.suscripcion-cards-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    gap: 30px;
    max-width: 100%;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
}

.suscripcion-cards-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

.plan-card {
    flex: 0 0 calc((100% / 3) - 20px);
    min-width: 280px;
    scroll-snap-align: start;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
    border: 2px solid rgba(0, 179, 0, 0.1);
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(0.5deg);
    box-shadow: 0 20px 40px rgba(0, 179, 0, 0.5), inset 0 0 10px rgba(0, 179, 0, 0.2);
    border-color: var(--color-verde-oscuro);
}

/* ... (el resto del CSS de .plan-card y :hover sigue igual) ... */

.plan-image-wrapper {
    /* CAMBIO 1: Eliminamos la altura fija de 300px.
       Esto permite que el contenedor crezca según el tamaño real de la imagen. */
    /* height: 300px;  <--- BORRADO */

    width: 100%; /* Asegura que ocupe todo el ancho de la tarjeta */
    overflow: hidden;
    position: relative;
    background-color: var(--color-azul-principal); /* Color de fondo por si acaso */
    border-radius: 12px 12px 0 0; /* Opcional: para que la imagen respete el borde redondeado superior de la tarjeta */
}

.plan-image-wrapper img {
    width: 100%; /* La imagen siempre ocupará el 100% del ancho disponible */

    /* CAMBIO 2: La altura debe ser automática.
       Esto mantiene la proporción original de la imagen sin deformarla ni cortarla. */
    height: auto;

    /* CAMBIO 3: 'display: block' elimina un pequeño espacio en blanco
       que a veces aparece debajo de las imágenes. */
    display: block;

    /* Ya no necesitamos 'object-fit: cover' porque la altura ya no es fija */

    opacity: 0.8;
    transition: opacity 0.5s;
}

/* ... (el resto del CSS sigue igual) ... */

.plan-card:hover .plan-image-wrapper img {
    opacity: 1;
}

.plan-content {
    padding: 25px 20px;
}

.plan-content h3 {
    font-size: 1.8rem;
    color: var(--color-azul-principal);
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-suscribete {
    display: block;
    width: 100%;
    background-color: var(--color-verde-oscuro);
    color: #fff;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 15px;
    text-transform: uppercase;
}

.btn-suscribete:hover {
    background-color: #008000;
    transform: scale(1.02);
}

.slider-nav-suscripcion {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--color-verde-oscuro);
    border: 2px solid var(--color-verde-oscuro);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px 18px;
    z-index: 10;
    border-radius: 50%;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.slider-nav-suscripcion:hover {
    background-color: var(--color-verde-oscuro);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.7);
}

.slider-nav-suscripcion.prev-s { left: -50px; }
.slider-nav-suscripcion.next-s { right: -50px; }

/* ======================================================= */
/* 9. FLOTANTES (WhatsApp) */
/* ======================================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}

/* ======================================================= */
/* 10. RESPONSIVE GLOBAL */
/* ======================================================= */

