
/***seccion del header **********/

:root {
    --color-bg-light: #ffffff;
    --color-text-on-light: #002e60;
    --color-text-muted: #555;
    --color-acento-principal: #00C9A7;
    --gradiente-acento-principal: linear-gradient(135deg, #00F2C3 0%, #00C9A7 100%);
    --sombra-acento-principal: rgba(0, 242, 195, 0.3);
}

:root {
    --color-gold: #f3c85f;      /* Borde dorado */
    --color-accent: #00C9A7;   /* Verde/Turquesa del botón */
    --color-accent-light: #00F2C3; /* Verde/Turquesa claro (hover) */
    --color-btn-text: #002e60;  /* Texto del botón */
    --color-bar-bg: #1a1a2e;    /* Fondo oscuro de la barra */
    --color-bar-text: #ffffff;  /* Texto blanco de la barra */
}

/* ========================================
   HEADER PRINCIPAL - FIXED
======================================== */
.uciency_header {
    /*position: sticky;*/  /** activar para que sea fijo**/
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-bg-light);
    box-shadow: 0 4px 15px rgba(0, 46, 96, 0.05);
    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;
}

/* ========================================
   LOGO
======================================== */
.uciency_header_logo {
    flex-shrink: 0;
}

.uciency_header_logo img {
    height: 40px;
    display: block;
}

/* ========================================
   NAVEGACIÓN DESKTOP
======================================== */
.uciency_header_nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.uciency_header_nav_link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.uciency_header_nav_link:hover {
    color: var(--color-acento-principal);
}

/* ========================================
   ACCIONES DESKTOP (WhatsApp + Botón)
======================================== */
.uciency_header_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.uciency_header_whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #25D366;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.uciency_header_whatsapp:hover {
    color: #1DA851;
}

.uciency_header_whatsapp i {
    font-size: 20px;
}

.uciency_header_btn {
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--gradiente-acento-principal);
    color: var(--color-text-on-light);
    box-shadow: 0 5px 20px var(--sombra-acento-principal);
}

.uciency_header_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--sombra-acento-principal);
}

/* ========================================
   BOTÓN HAMBURGUESA (MÓVIL)
======================================== */
.uciency_header_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
    position: relative;
}

.uciency_header_toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-on-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

/* Animación X cuando está activo */
.uciency_header_toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.uciency_header_toggle.active span:nth-child(2) {
    opacity: 0;
}

.uciency_header_toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ========================================
   MENÚ MÓVIL - OVERLAY
======================================== */
.uciency_header_mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-bg-light);
    box-shadow: -5px 0 30px rgba(0, 46, 96, 0.2);
    z-index: 1500;
    padding: 100px 30px 40px;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.uciency_header_mobile.active {
    right: 0;
}

/* Botón X para cerrar dentro del menú */
.uciency_header_mobile_close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--color-text-on-light);
    line-height: 1;
    transition: transform 0.3s ease;
}

.uciency_header_mobile_close:hover {
    transform: rotate(90deg);
}

.uciency_header_mobile_close::before {
    content: "×";
}

/* Logo dentro del menú móvil */
.uciency_header_mobile_logo {
    text-align: center;
    margin-bottom: 50px;
}

.uciency_header_mobile_logo img {
    height: 40px;
}

/* Lista de enlaces móvil */
.uciency_header_mobile_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.uciency_header_mobile_link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-muted);
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.uciency_header_mobile_link:hover {
    color: var(--color-acento-principal);
}

.uciency_header_mobile_whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #25D366;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.uciency_header_mobile_whatsapp:hover {
    color: #1DA851;
}

.uciency_header_mobile_whatsapp i {
    font-size: 22px;
}

.uciency_header_mobile_btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    background: var(--gradiente-acento-principal);
    color: var(--color-text-on-light);
    box-shadow: 0 5px 20px var(--sombra-acento-principal);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.uciency_header_mobile_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--sombra-acento-principal);
}

/* ========================================
   BACKDROP OSCURO
======================================== */
.uciency_header_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.uciency_header_backdrop.active {
    opacity: 1;
    visibility: visible;
}
























/**************** 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) {
            
            
            
            
        /******** seccion del header *******/
        
           .uciency_header_mobile{
    padding: 30px 0px;
}
    .uciency_header {
        height: 70px;
    }
    
    /* Ocultar elementos desktop */
    .uciency_header_nav,
    .uciency_header_whatsapp,
    .uciency_header_btn {
        display: none;
    }
    
    /* Mostrar toggle */
    .uciency_header_toggle {
        display: flex;
    }
            
            
            
            
            
            
            
            
            
            
            
      /*** 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;
            }
        }

        
        
        
        
        
        
        