
/***************************************************
   SECCIÓN HEADER UCIENCY - CSS COMPLETO RENOVADO
****************************************************/

:root {
  --color-bg-light: #ffffff;
  --color-text-on-light: #002e60;
  --color-text-muted: #4a5568;
  --color-acento-principal: #00C9A7;
  --gradiente-acento-principal: linear-gradient(135deg, #00F2C3 0%, #00C9A7 100%);
  --sombra-acento-principal: rgba(0, 242, 195, 0.25);

  /* Estilos Dorados para Membresía */
  --gold-bg: linear-gradient(135deg, #FFF3D1 0%, #FCD34D 100%);
  --gold-border: #F59E0B;
  --gold-text: #3a2000;
  --red-badge: #EF4444;
}

/* Reset básico del contenedor del header */
.uciency_header {
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-bg-light);
  box-shadow: 0 4px 20px rgba(0, 46, 96, 0.06);
  z-index: 1000;
}

.uciency_header_container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================================
   1. LOGO
======================================== */
.uciency_header_logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.uciency_header_logo img {
  height: 42px;
  display: block;
}

/* ========================================
   2. NAVEGACIÓN Y ACCIONES DESKTOP
======================================== */
.uciency_header_nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.uciency_header_nav_link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.uciency_header_nav_link i {
  font-size: 16px;
  color: var(--color-acento-principal);
}

.uciency_header_nav_link:hover {
  color: var(--color-text-on-light);
}

/* BOTÓN MEMBRESÍA (DORADO Y SÓLIDO) */
.uciency_header_membership {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  color: var(--gold-text) !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.uciency_header_membership i {
  color: #B45309;
  font-size: 15px;
}

/* Punto rojo de notificación (Badge) */
.uciency_badge_dot {
  position: absolute;
  top: -3px;
  right: -2px;
  width: 11px;
  height: 11px;
  background-color: var(--red-badge);
  border-radius: 50%;
  border: 2px solid #ffffff;
}

/* ACCIONES DESKTOP */
.uciency_header_actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* WHATSAPP PÍLDORA */
.uciency_header_whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #E8FAF0;
  border: 1px solid #A7F3D0;
  border-radius: 50px;
  text-decoration: none;
  color: #0F9247 !important;
  font-size: 14px;
  font-weight: 800;
}

.uciency_header_whatsapp i {
  font-size: 17px;
  color: #25D366;
}

/* BOTÓN INICIAR SESIÓN */
.uciency_header_btn {
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  background: var(--gradiente-acento-principal);
  color: var(--color-text-on-light);
  box-shadow: 0 4px 15px var(--sombra-acento-principal);
}

/* ========================================
   3. BOTÓN HAMBURGUESA
======================================== */
.uciency_header_toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* Z-index inferior al menú para que no flote encima cuando esté abierto */
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.uciency_header_toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-text-on-light);
  border-radius: 3px;
  display: block;
}

/* Ocultar botón hamburguesa cuando el menú está abierto */
.uciency_header_toggle.active {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ========================================
   4. MENÚ DESPLEGABLE MÓVIL
======================================== */
.uciency_header_mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 27, 61, 0.15);
  z-index: 1500;
  padding: 24px 20px 30px;
  overflow-y: auto;
  box-sizing: border-box;
  transition: right 0.35s ease;
}

.uciency_header_mobile.active {
  right: 0;
}

/* BOTÓN DE CIERRE (X) SOLIDO Y VISIBLE */
.uciency_header_mobile_close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002e60 !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  outline: none;
}

/* Fuerza el renderizado de una sola 'X' visible por CSS */
.uciency_header_mobile_close::after {
 
  display: block !important;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.uciency_header_mobile_close::before {
  content: "" !important;
  display: none !important;
}

.uciency_header_mobile_close:hover {
  background-color: #e2e8f0;
  color: #000 !important;
}

/* CABECERA EN MÓVIL */
.uciency_header_mobile_logo {
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.uciency_header_mobile_logo img {
  height: 34px;
  display: block;
}

/* LISTA DE ELEMENTOS EN MÓVIL */
.uciency_header_mobile_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.uciency_header_mobile_list li {
  width: 100%;
}

/* ENLACES TIPO TARJETA MÓVIL */
.uciency_header_mobile_link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
}

.uciency_header_mobile_link i {
  color: var(--color-acento-principal);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.uciency_header_mobile_link:hover {
  background-color: #f1f5f9;
  color: var(--color-text-on-light);
}

/* MEMBRESÍA VIP MÓVIL */
.uciency_header_mobile_membership {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  color: var(--gold-text) !important;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  box-sizing: border-box;
  margin: 4px 0;
}

.uciency_header_mobile_membership i {
  color: #b45309;
  font-size: 16px;
}

/* WHATSAPP MÓVIL */
.uciency_header_mobile_whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background-color: #e8faf0;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  text-decoration: none;
  color: #0f9247 !important;
  font-size: 14px;
  font-weight: 800;
  box-sizing: border-box;
  margin-top: 6px;
}

.uciency_header_mobile_whatsapp i {
  font-size: 18px;
  color: #25d366;
}

/* BOTÓN INICIAR SESIÓN MÓVIL */
.uciency_header_mobile_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  background: var(--gradiente-acento-principal);
  color: var(--color-text-on-light);
  box-shadow: 0 4px 15px var(--sombra-acento-principal);
  box-sizing: border-box;
  margin-top: 4px;
}

/* BACKDROP (FONDO OSCURO) */
.uciency_header_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 27, 61, 0.4);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.uciency_header_backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   5. MEDIA QUERIES (MÓVIL / PANTALLAS PEQUEÑAS)
======================================== */
@media (max-width: 992px) {
  .uciency_header_nav, 
  .uciency_header_actions {
    display: none !important;
  }
  
  .uciency_header_toggle {
    display: flex !important;
  }
}























/**************** seccion de footer **********/

.footer_uciency {
            background: #002e60;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Decoración superior */
        .footer_uciency::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00F2C3 0%, #002e60 100%);
        }

        /* Contenedor principal */
        .footer_uciency_contenedor {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px 30px;
        }

        /* Grid del footer */
        .footer_uciency_grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        /* Columna */
        .footer_uciency_columna {
            display: flex;
            flex-direction: column;
        }

        /* Logo y descripción */
        .footer_uciency_logo {
            width: 180px;
            margin-bottom: 20px;
        }

        .footer_uciency_descripcion {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* Estadísticas rápidas */
        .footer_uciency_stats {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }

        .footer_uciency_stat {
            text-align: center;
        }

        .footer_uciency_stat_numero {
            display: block;
            font-size: 24px;
            font-weight: 900;
            color: #00F2C3;
            margin-bottom: 5px;
        }

        .footer_uciency_stat_label {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Títulos de columnas */
        .footer_uciency_titulo {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer_uciency_titulo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #00F2C3;
            border-radius: 2px;
        }

        /* Enlaces */
        .footer_uciency_enlaces {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer_uciency_enlace {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer_uciency_enlace i {
            color: #00F2C3;
            font-size: 14px;
            width: 20px;
        }

        .footer_uciency_enlace:hover {
            color: #00F2C3;
            transform: translateX(5px);
        }

        /* Botones destacados */
        .footer_uciency_botones {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .footer_uciency_boton {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .footer_uciency_boton_primario {
            background: #00F2C3;
            color: #002e60;
        }

        .footer_uciency_boton_primario:hover {
            background: #5abdb6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 204, 197, 0.4);
        }

        .footer_uciency_boton_secundario {
            background: transparent;
            color: white;
            border: 2px solid rgba(100, 204, 197, 0.5);
        }

        .footer_uciency_boton_secundario:hover {
            border-color: #00F2C3;
            background: rgba(100, 204, 197, 0.1);
        }

        /* Contacto */
        .footer_uciency_contacto_item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .footer_uciency_contacto_item:hover {
            color: #00F2C3;
        }

        .footer_uciency_contacto_icono {
            width: 40px;
            height: 40px;
            background: rgba(100, 204, 197, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00F2C3;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Redes sociales */
        .footer_uciency_redes {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer_uciency_red {
            width: 45px;
            height: 45px;
            background: rgba(100, 204, 197, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00F2C3;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .footer_uciency_red:hover {
            background: #00F2C3;
            color: #002e60;
            transform: translateY(-5px);
        }

        /* Newsletter */
        .footer_uciency_newsletter {
            margin-top: 20px;
        }

        .footer_uciency_newsletter_form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .footer_uciency_newsletter_input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid rgba(100, 204, 197, 0.3);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .footer_uciency_newsletter_input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer_uciency_newsletter_input:focus {
            border-color: #00F2C3;
            background: rgba(255, 255, 255, 0.08);
        }

        .footer_uciency_newsletter_boton {
            padding: 12px 25px;
            background: #00F2C3;
            color: #002e60;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer_uciency_newsletter_boton:hover {
            background: #5abdb6;
            transform: scale(1.05);
        }

        /* Bottom bar */
        .footer_uciency_bottom {
            border-top: 1px solid rgba(100, 204, 197, 0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer_uciency_copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin: auto;
            padding: 20px;
        }

        .footer_uciency_copyright span {
            color: #00F2C3;
            font-weight: 700;
        }

        .footer_uciency_legal {
            display: flex;
            gap: 20px;
        }

        .footer_uciency_legal_link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer_uciency_legal_link:hover {
            color: #00F2C3;
        }

     
     
     
     
     
     
     
     /*** para el botond e whatsapp********/
     
     /* ========================================
   BOTÓN FLOTANTE DE WHATSAPP
======================================== */


/*
.uciency_whatsapp_float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000; 
    background: #25D366; 
    color: var(--color-white); 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.uciency_whatsapp_float:hover {
    background: #1DA851; 
    transform: translateY(-4px);
}
     
     
     
  .uciency_whatsapp_notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background-color: #ff4757;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
     
     
  */   
     
     
     
     
     
     
     
     
     
     
 /* ========================================
   BARRA DE CTA FIJA INFERIOR (CORREGIDA)
======================================== */

/* Estilos base para MÓVIL (Más delgado)
*/
.uciency_bottom_cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* CAMBIO: Color de fondo oscuro puesto directamente */
    background: var(--color-bar-bg);
    
    /* CAMBIO: Padding reducido (10px arriba/abajo) para ser más delgado */
    padding: 10px 15px; 
    
    border-top: 3px solid var(--color-gold);
    z-index: 1000;
}

.uciency_bottom_cta_container {
    width: 100%;
}

.uciency_bottom_cta_text {
    display: none; /* Oculto en móvil */
}

.uciency_bottom_cta_btn {
    display: block;
    width: 100%;
    
    background: var(--color-accent);
    color: var(--color-btn-text);
    
    /* CAMBIO: Padding del botón reducido para que sea menos alto */
    padding: 13px;
    
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 17px; /* Fuente ligeramente más pequeña */
    font-weight: 900;
    transition: all 0.3s ease;
}

.uciency_bottom_cta_btn:hover {
    background: var(--color-accent-light);
    transform: scale(1.02);
}

.uciency_bottom_cta_btn .text-desktop {
    display: none;
}
.uciency_bottom_cta_btn .text-mobile {
    display: block;
}



     
     
     
     
     
     
     
     
     
     
     
     /*********** para responsive **/

        @media (max-width: 768px) {
            
            
            
   
            
            
            
            
            
            
            
            
            
            
      /*** footer ***/      
            .footer_uciency_contenedor {
                padding: 50px 20px 30px;
            }

            .footer_uciency_grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer_uciency_stats {
                justify-content: space-around;
            }

            .footer_uciency_bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer_uciency_legal {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .footer_uciency_newsletter_form {
                flex-direction: column;
            }

            .footer_uciency_newsletter_boton {
                width: 100%;
            }
            
            
            
            
            
       /*** para cta **/
     
     
     .uciency_bottom_cta {
        /* Vuelve al padding grande en escritorio */
        padding: 20px 0; 
    }

    .uciency_bottom_cta_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Muestra el texto de la izquierda en escritorio */
    .uciency_bottom_cta_text {
        display: flex;
        align-items: center;
        color: var(--color-bar-text);
        font-size: 18px;
        font-weight: 600;
    }
    
    .uciency_bottom_cta_text i {
        color: var(--color-gold);
        font-size: 20px;
        margin-right: 15px;
    }

    /* El botón vuelve a su tamaño normal */
    .uciency_bottom_cta_btn {
        width: auto; 
        padding: 15px 30px; /* Padding de escritorio */
        font-size: 18px; /* Fuente de escritorio */
    }
    
    .uciency_bottom_cta_btn:hover {
        transform: translateY(-3px);
    }

    /* Cambia el texto del botón */
    .uciency_bottom_cta_btn .text-desktop {
        display: block;
    }
    .uciency_bottom_cta_btn .text-mobile {
        display: none;
    }  
            
            
            
            
            
            
            
            
            
            
            
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
  /******************************* css para la parte del carrusel - solo carrusel - los diseños cada pagina css se encarga del contenido *******/
  
  /**este primero es opcional, lo puede manera cada quien */
  .carrusel_uciency_section {
            max-width: 1200px;
            margin: 0 auto;
        }

  
  
  
 /* ============================================
           CARRUSEL UCIENCY - ESTRUCTURA Y FUNCIONALIDAD
           Todo lo relacionado con el comportamiento del carrusel
           ============================================ */

        /* Contenedor principal del carrusel */
        .carrusel_uciency_container {
            position: relative;
            width: 100%;
        }

        /* Wrapper del carrusel móvil */
        .carrusel_uciency_wrapper {
            position: relative;
            width: 100%;
            overflow: visible;
        }

        /* Track que contiene las tarjetas y se mueve */
        .carrusel_uciency_track {
            display: flex;
            gap: 16px;
            padding: 0 16px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: grab;
        }

        .carrusel_uciency_track:active {
            cursor: grabbing;
        }

        /* Grid para desktop */
        .carrusel_uciency_grid {
            display: none;
            padding: 0 20px;
        }

        /* Navigation Dots */
        .carrusel_uciency_dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
            padding: 0 16px;
        }

        .carrusel_uciency_dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .carrusel_uciency_dot.active {
            background: #00F2C3;
            width: 24px;
            border-radius: 4px;
        }

        /* Efectos de fade en los bordes del carrusel móvil */
        @media (max-width: 767px) {
            .carrusel_uciency_wrapper::before,
            .carrusel_uciency_wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                bottom: 32px;
                width: 20px;
                z-index: 10;
                pointer-events: none;
            }

            .carrusel_uciency_wrapper::before {
                left: 0;
                
            }

            .carrusel_uciency_wrapper::after {
                right: 0;
               
            }

            /* Tamaño de tarjetas en móvil */
            .carrusel_uciency_card {
                flex: 0 0 85%;
                min-width: 85%;
                max-width: 85%;
            }
        }

        /* RESPONSIVE: Tablet (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .carrusel_uciency_wrapper {
                display: none;
            }

            .carrusel_uciency_grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .carrusel_uciency_dots {
                display: none;
            }
        }

        /* RESPONSIVE: Desktop (1024px+) */
        @media (min-width: 1024px) {
            .carrusel_uciency_wrapper {
                display: none;
            }

            .carrusel_uciency_grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .carrusel_uciency_dots {
                display: none;
            }
        }

        
        
        
        
        
        
        