@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* nav bar*/

* {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #2A2B65;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; 
}

.logo {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%; 
}

/* Estilos del chatbot */
       /* Estilos generales */
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        
        /* Botón flotante */
        #chatbot-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #0056b3;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 20px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            font-weight: 600;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        #chatbot-btn:hover {
            background: #003d7a;
        }
        
        /* Contenedor del chat */
        #chatbot-container {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 320px;
            height: 400px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-direction: column;
            z-index: 1001;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }
        
        /* Encabezado */
        #chat-header {
            background: #0056b3;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            border-bottom: 1px solid #004494;
        }
        
        /* Área de mensajes */
        #chat-messages {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f8f9fa;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        /* Estilos de mensajes */
        .mensaje-usuario {
            background: #e3f2fd;
            padding: 10px 12px;
            border-radius: 12px 12px 0 12px;
            align-self: flex-end;
            max-width: 80%;
            font-size: 14px;
            color: #333;
        }
        
        .mensaje-bot {
            background: white;
            padding: 10px 12px;
            border-radius: 12px 12px 12px 0;
            align-self: flex-start;
            max-width: 80%;
            border: 1px solid #e0e0e0;
            font-size: 14px;
        }
        
        .mensaje-error {
            color: #721c24;
            background-color: #f8d7da;
            padding: 10px;
            border-radius: 5px;
            font-size: 13px;
            text-align: center;
        }
        
        /* Indicador de "Pensando..." */
        .cargando {
            color: #666;
            font-style: italic;
            padding: 10px;
            text-align: center;
            font-size: 13px;
            border-top: 1px dashed #ccc;
            margin-top: 8px;
        }
        
        /* Área de entrada */
        #chat-input-container {
            padding: 12px;
            background: white;
            border-top: 1px solid #e0e0e0;
            display: flex;
            gap: 8px;
        }
        
        #chat-input {
            flex-grow: 1;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 14px;
            outline: none;
        }
        
        #chat-input:focus {
            border-color: #0056b3;
        }
        
        #chat-send {
            padding: 10px 16px;
            background: #0056b3;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
        }
        
        #chat-send:hover {
            background: #003d7a;
        }
        
        /* Separador */
        .separador {
            border-top: 1px solid #e0e0e0;
            margin: 8px 0;
            text-align: center;
            color: #999;
            font-size: 12px;
        }
    
        


/* Clases para fondos */

 #FondoAzul {
    background-color: #2A2B65;
 }

/* Clases para color de letra */

 }
.letraBlanca{
    color: #FFFFFF;
}

/* Clases para slider infinito */

.slider {
    width: 75vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 50s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: calc(200px * 14);
}

.slider .slide {
    width: 200px;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}


/* Botón neon */
.center-button1{
        display: flex;
        justify-content: center;
    }

    .btn-neon{
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 24px;
    overflow: hidden;
    transition: 0.2s;
}
.btn-neon:hover{
    background: #0027FF;
    box-shadow: 0 0 10px #0027FF , 0 0 40px #0027FF, 0 0 80px #0027FF;
    transition-delay: 1s;
 }
.btn-neon span{
    position: absolute;
    display: block;
}
#span1{
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent,#0027FF);
 }
 .btn-neon:hover #span1{
    left: 100%;
    transition: 1s;
}
 #span3{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent,#0027FF);
}
 .btn-neon:hover #span3{
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}
#span2{
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#0027FF);
}
.btn-neon:hover #span2{
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}
#span4{
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#0027FF);
}
.btn-neon:hover #span4{
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}
.bordes{
    padding: 30px;

}


/* Clase footer*/
.footer{
    background-color: #2A2B65;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 25px;
}
.footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}
.footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}

/responsive/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}

}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}

/* Fondo banner */
