@font-face {
    font-family: 'BrittanySignature';
    src: url('fonts/BrittanySignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-ExtraBold';
    src: url('fonts/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-ExtraLight';
    src: url('fonts/Raleway-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Heavy';
    src: url('fonts/Raleway-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Light';
    src: url('fonts/Raleway-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Regular';
    src: url('fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('fonts/Raleway-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Thin';
    src: url('fonts/Raleway-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TrashHand';
    src: url('fonts/TrashHand.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

 /*INICIA SECCION DE ESTILOS*/
:root {
    --primary-color: #007bff;
    --hover-color: #0056b3;
    --background-color: #f4f4f4;
    --text-color: #000000;
    --light-bg: #f0f0f0;
    --medium-bg: #d0d0d0;
    --dark-bg: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway-SemiBold';
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    background-image: url('imagen/fondo1.png'); /* Cambia esto por la ruta de tu imagen */

}

/* Contenedor principal */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin: 20px auto;
    padding: 0 20px;
}

.container img {
    width: 200px;
    height: auto; /* Altura automática */

}
.container90 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-image: url('imagen/Fotos2024/1.png'); /* Ruta de tu imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
    background-position: center; /* Centra la imagen en el contenedor */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    border-radius: 10px;
    box-shadow: 0 12px 12px rgb(214, 214, 214);
    max-width: 80%; /* Aumenta el ancho máximo del contenedor */
    height: 600px; /* Aumenta la altura del contenedor */
    margin: 0 auto;
    position: relative; /* Asegura que las burbujas se posicionen dentro del contenedor */
    overflow: hidden; /* Evita que las burbujas se salgan del contenedor */
}


/* Navegación */
nav {
    flex-grow: 1;
    text-align: right;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color:  rgb(255, 167, 1); /* Color al pasar el cursor */
}

nav ul li a.active {
    color:  rgb(0, 0, 0); /* Color para el enlace activo */
    border-bottom: 2px solid rgb(255, 167, 1); /* Línea debajo del enlace activo */
}

/* Contenedor del horario */
.horario {
    background-color: #f7d18d;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
}
.text-section {
    max-width: 50%;
}

.text-section h1 {
    font-size: 3em;
    color:#012b25;
    font-family: 'Raleway-ExtraBold';
}

.slogan {
    font-size: 4em;
    color: #ffa701;
    margin-top: 0.2em;
    line-height: 1.1;
    font-weight: bold; /* O usa un valor numérico como 700 */
}

.description {
    margin-top: 1em;
    font-size: 20 px;
    color: #000000;
    text-align: justify;
}
.buttons {
    margin-top: 2em;
}

.buttons {
    margin-top: 2em;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    background-color: rgb(1, 43, 37);
}

.btn-contact {
    background-color: rgb(1, 43, 37);
    color: #ffffff;
    margin-right: 10px;
}

.btn-services {
    background-color:rgb(1, 43, 37);
    color: #ffffff;
}

/* Estilos generales */
.contenedores {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: space-between; /* Alinea el contenido del botón en la parte inferior */

}

.contenedor1 {
    background-image: url(imagen/fondo1.png);
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 45%; /* Ajuste de ancho flexible */
    position: relative;
    margin-bottom: 20px; /* Espacio entre contenedores */
    max-width: 800px; /* Establece el ancho máximo */
    box-shadow: 0 12px 12px rgb(214, 214, 214);
}

.contenedor2 {
    background-image: url(imagen/fondo1.png);
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 45%; /* Ajuste de ancho flexible */
    position: relative;
    margin-bottom: 20px; /* Espacio entre contenedores */
    max-width: 800px; /* Establece el ancho máximo */
    box-shadow: 0 12px 12px rgb(214, 214, 214);

}
.contenedor1,
.contenedor2 {
 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
 
}


.contenedores h2 {
    font-family: 'TrashHand';
    color:rgb(255, 167, 1); /* Color del texto principal */
    font-size: 40px;
}

.contenedores h2 span {
    color: rgb(0, 0, 0);
    font-family: 'BrittanySignature';
    line-height: 1.1; /* Ajusta este valor para reducir el espacio entre líneas */  
}
span {
    font-size: 50px ;
}

.contenedores p {
    font-family: 'Raleway-SemiBold';
    font-size: 15px;
    color: #000000; /* Color del texto secundario */
    text-align: justify;
}

button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(255, 167, 1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Raleway-SemiBold';
    border: none;
    cursor: pointer;
    margin-top: 20px;
    
}

button:hover {
    background-color: rgb(255, 167, 1);
}

.contenedor1::before, .contenedor2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagen/servicios2.jpg'); /* Imagen de fondo desenfocada */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .contenedor1, .contenedor2 {
        flex: 1 1 100%; /* Ocupar ancho completo en pantallas más pequeñas */
    }
}

.slogan{
    font-family: 'TrashHand';
    font-size: 3em;

}
h1 {
    text-align: center;
    color: #012b25;

}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Raleway-Bold';
    text-align: center;
    color: #000000;
}

.intro-text {
    text-align: center;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #000000;
}

 /* contenedores pequeños */
.highlight {
    color:  rgb(255, 167, 1 );
    font-size: 2.5rem;
    font-weight: bold; /* O usa un valor numérico como 700 */
    font-family:'TrashHand';
}

/* Services Section */
.services-section {
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-box {
    background-image: url(imagen/fondo1.png);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 12px 12px rgb(214, 214, 214);
    text-align: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-box p {
    font-size: 15px;
    color: #000000;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }



    .highlight {
        font-size: 2rem;
    }
}
.isa-services {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-image: url(imagen/servicios2.jpg);
    max-width: 1100px; /* Establece el ancho máximo */
    margin: 0 auto;    /* Centra el contenedor */
    border-radius: 10px; /* Opcional: agrega un borde redondeado */
    box-shadow: 0 12px 12px rgb(214, 214, 214)
    }

.team-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



.info-section {
    flex: 1;
    padding: 20px;
}

.info-section h3 {
    color: #012b25;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-section h1 {
    color: #012b25;
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Raleway-ExtraBold';
}

.info-section h1 span {
    color: rgb(1, 43, 37);
    font-style: italic;
    font-family: 'BrittanySignature';
}

.info-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    
}

.icons {
    display: flex;
    justify-content: space-between;
}

.icon {
    text-align: center;
}

.icon img {
    width: 60px;
    height: 60px;
}

.icon p {
    color:  rgb(255, 167, 1);
    font-size: 16px;
    margin-top: 10px;
}

.icons {
    display: flex;
    justify-content: space-between;
}

.icon {
    position: relative;
    text-align: center;
    width: 150px;
    margin: 20px;
}

.icon img {
    position: relative;
    z-index: 1; /* Asegura que la imagen esté por encima del círculo */
    width: 60px;
    height: 60px;
}

.icon p {
    font-size: 16px;
    margin-top: 10px;
}

.icon .circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;  /* Aumenta el tamaño del círculo */
    height: 100px; /* Aumenta el tamaño del círculo */
  
    border-radius: 5%;
    z-index: 0; /* Asegura que el círculo esté detrás de la imagen */
}

.testimonios {
    text-align: center;
    padding: 50px 0;
    background-image: url(imagen/fondo1.png);
}

.titulo h3 {
    font-size: 16px;
    color: rgb(1, 43, 37);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.titulo h1 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Raleway-ExtraBold';
}

.titulo h1 span {
    color: rgb(255, 167, 1);
    font-family: 'TrashHand';
}


.testimonios-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.testimonio {
    max-width: 330px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-image: url(imagen/Fotos2024/fondo-contenedor.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}


.testimonio .foto img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonio h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #DC8F78;
    font-family: 'Raleway-Bold';
}

.testimonio p {
    font-size: 14px;
    margin-bottom: 10px;
}

.autor-estrellas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.estrellas {
    font-size: 10rem; /* Aumenta el tamaño de las estrellas */
    color: gold;     /* Opcional: color dorado para mejor apariencia */
    margin-bottom: 0.3rem;
}

.autor {
    font-weight: bold;
    font-size: 1rem;
    color: #012B25;
    font-family: 'Raleway-Bold';
}


.puesto {
    color:  rgb(220, 143, 120);
    font-size: 14px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .testimonios-contenedor {
        flex-direction: column;
        align-items: center;
    }

    .testimonio {
        width: 90%;
        margin-bottom: 30px;
    }
}

/* logotipos */

.logo-carousel {
    background-image: url(imagen/fondo1.png);
    padding: 20px 0; /* Reducir el padding vertical */
    max-width: 1190px; /* Definir un ancho máximo más pequeño */
    margin: 0 auto; /* Centrar el carrusel */
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Mantener el 100% dentro del contenedor más pequeño */
}

.logo-slide {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
}

.logo-item {
    width: 200px;  /* Reducir aún más el tamaño del logo */
    display: flex;
    justify-content: center;
    margin: 0 8px; /* Reducir el margen lateral */
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .logo-slide {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-item {
        width: 45%;
        margin-bottom: 20px;
    }
}

/* SIG SECCION*/
.hero {
    display: flex;
    align-items: center;
    padding: 5px;
    background-image: url(imagen/Fotos2024/Fondo-adri.png);
    max-width: 80%; /* Ajusta el ancho máximo del contenedor */
    margin: 0 auto;    /* Centra el contenedor horizontalmente */
    box-shadow: 0 12px 12px rgb(214, 214, 214);
}

.content {
    max-width: 600px; /* Ajusta el ancho máximo del contenido */
    text-align: center; /* Mantiene el texto centrado */
    padding: 12px;
}

.content h2 {
    font-size: 24px;
    color: #012b25;
    margin-bottom: 10px;
    font-family: 'Raleway-Bold';
}

.content h1 {
    font-size: 36px;
    color: rgb(1, 43, 37);
    font-family: 'Raleway-Bold'
}

.content h1 span {
    
    color: #ffa701;
    font-family: 'TrashHand';
}

.content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 18px ;
    text-align: justify;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: rgb(1, 43, 37);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: #ffffff;
}

.btn:hover {
    background-color:#ffa701;
}

.team-image img {
  width: 400px;      /* Reduce el tamaño de la imagen */
  height: auto;      
  border-radius: 50%; /* Asegura que el círculo se mantenga */
  object-fit: cover;
  margin-left: 10px;  /* Ajusta si está muy pegado al borde */
}


.stats {
    display: flex;
    justify-content: space-around;
    padding: 17px;
    background: transparent; /* Sin fondo */
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: #000000;
}

.stat-item p {
    font-size: 18px;
    color: #000000;
}
.stat-item img {
    width: 100px; /* Aumenta el tamaño del GIF */
    height: auto;     /* Mantiene la proporción */
    margin-bottom: 10px;
   
}

.hero1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgb(0, 0, 0);
    background-image: url(imagen/fondo_Mesa-de-trabajo-1.png);
    max-width: 800px; /* Ajusta este valor a lo que necesites */
    margin: 0 auto;    /* Centra el contenedor horizontalmente */
    width: 100%;       /* Asegura que use el 100% del contenedor padre hasta el max-width */
}

/* Estilos para la sección de contacto con íconos */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px; /* Menor espacio entre columnas */
    margin-bottom: 10px; /* Menor margen inferior */
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #000000;
}

/* Sección de redes sociales */
.social-media {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.social-media h3 {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(220, 143, 120);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.whatsapp-button:hover {
    background-color: rgb(226, 214, 197); /* Color más claro al pasar el ratón */
}
.services-container {
    max-width: 100%;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}

.hero12 {
    padding: 20px;
    background-image: url(imagen/Fotos2024/fondo-contacto.png);
    background-repeat: no-repeat;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.content1 {
    max-width: 800px; /* Ajusta según sea necesario */
    margin: 0 auto; /* Centra el contenido */
    display: flex; /* Usa flexbox */
    flex-direction: column; /* Apila los elementos en columnas */
}

.content1 h2
{
    font-family: 'Raleway-Bold';
    margin: 10px 0; /* Espaciado entre los elementos */
    color: #012B25;
    font-size: 30px;
}
.content1 h1 {
    margin: 10px 0; /* Espaciado entre los elementos */
    color: rgb(255, 167, 1);
    font-family: 'TrashHand';
    font-size: 45px;
}
.content1 span {
    color:#012B25;
   font-family: 'Raleway';
   font-size: 30px;
}
.button-container {
    display: flex; /* Usa flexbox para el contenedor del botón */
    justify-content: flex-end; /* Alinea el botón a la derecha */
    margin-top: 20px; /* Espacio superior */
}

.span{
    font-family:'TrashHand'
}

.highlight{
    font-family:'TrashHand' ;
    font-size: 40px;
}


/* Inicia whatsapp flotante  */
.whatsapp-float {
    position: fixed; /* Permite que el ícono permanezca en la misma posición al hacer scroll */
    bottom: 20px; /* Distancia desde el fondo de la ventana */
    right: 20px; /* Distancia desde la derecha de la ventana */
    z-index: 1000; /* Asegura que esté encima de otros elementos */
}

.whatsapp-float img {
    width: 60px; /* Ajusta el tamaño del ícono */
    height: auto; /* Mantiene la proporción */
    border-radius: 50%; /* Opcional: para darle un efecto redondeado */
}

/* Termina whatsapp flotante  */

.resaltar {
    color: #DC8F78; /* Cambia a cualquier color que desees */
    font-weight: bold; /* Hace que el texto esté en negrita */
    font-size: 15px;
    font-family: 'Raleway-ExtraBold';
}


.contact-item img {
    width: 30px; /* Reducido el tamaño de los iconos */
    height: 30px;
    margin-bottom: 3px; /* Menor espacio debajo del icono */
}

.contact-item h3 {
    margin: 3px 0; /* Reducido el margen del título */
    font-size: 14px; /* Tamaño del texto reducido */
    font-weight: normal;
}

.contact-item p {
    font-size: 12px; /* Texto más pequeño */
    margin: 0;
}

.social-media a {
    margin: 0 3px; /* Menor espacio entre los iconos de redes sociales */
}

.social-media img {
    width: 30px; /* Reducido el tamaño de los iconos de redes sociales */
    height: auto;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 15px; /* Menor espacio entre filas */
    }
}


.containergrid {
    max-width: 100%; /* Ancho máximo del contenedor */
    margin: 0 auto; /* Centrar el contenedor */
    padding: 20px; /* Espaciado interno */
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 100%;
    max-width: 400px; /* Ancho máximo de las tarjetas */
    margin: 10px; /* Espacio entre tarjetas */
    display: flex; /* Habilita el uso de flexbox */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    box-shadow: 0 12px 12px rgb(214, 214, 214);
}

.service-card img {
    width: 25%; /* Ajusta el ancho según lo necesites */
    height: auto; /* Mantiene la proporción de la imagen */
    object-fit: cover;
    transition: transform 0.9s, opacity 0.3s;
    margin: auto; /* Centra la imagen dentro del contenedor */
    display: block; /* Cambia a block para centrar con margin auto */
}


.service-card:hover img {
transform: scale(1.1);
opacity: 0.1;
}

.service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255);
    opacity: 0;
    transition: opacity 0.4s;
    text-align: justify;
    padding: 20px; /* ← Aquí agregas el margen interno */
}

.service-card:hover .overlay {
    opacity: 1;
    text-align: justify;
}

.service-card h3 {
    margin: 0;
    text-align: center;
    color: rgb(0, 0, 0);
    font-family: 'Raleway-ExtraBold';
    font-size: 25px;
}


.service-card h3 span {
    margin: 0;
    text-align: center;
    color: #ffa701;
    font-family: 'TrashHand';
    font-size: 40px;
   
}

.service-grid {
    display: flex;
    justify-content: center; /* Centra los elementos horizontalmente */
    gap: 1px; /* Espacio entre los elementos */
}



/* Estilos del chatbot */
        
.chatbot {
    display: none; /* Oculta el chat por defecto */
    position: fixed;
    bottom: 85px; /* Ajusta según tus necesidades */
    right: 0px;
    width: 255px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background-color: #25D366;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-body {
    padding: 10px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-message {
    margin: 5px 0;
    padding: 8px;
    border-radius: 8px;
    max-width: 80%;
}

.user-message {
    background-color: #eefae3;
    align-self: flex-end;
}

.bot-message {
    background-color: #e8e8e8;
    align-self: flex-start;
}

.chat-input {
    display: flex;
    border-top: 1px solid #ccc;
}

.chat-input input {
    border: none;
    padding: 10px;
    flex: 1;
    border-bottom-left-radius: 10px;
    outline: none;
}

.chat-input button {
    padding: 10px;
    border: none;
    background-color: #25D366;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-bottom-right-radius: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.quick-reply {
    padding: 10px;
    background-color: #ffa701;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
    text-align: center;
}

.quick-reply:hover {
    background-color: #f7d18d;
}


nav ul li a[href*="capacitaciones"] {
    background-color: #ffa701; /* Fondo azul */
    color: white; /* Texto blanco para contraste */
    padding: 10px; /* Espacio alrededor del texto */
    border-radius: 5px; /* Bordes redondeados opcionales */
    text-decoration: none; /* Elimina subrayado */
}

nav ul li a[href*="capacitaciones"]:hover {
    background-color: #012b25; /* Fondo cambia a un azul más oscuro al pasar el mouse */
    color: #f0f0f0; /* Cambia el color del texto también si lo deseas */
}

.btn-capacitate {
  display: inline-block;
  background-color: #FFD700; /* amarillo */
  color: black;              /* letras negras */
  text-decoration: none;     /* quitar subrayado */
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;       /* bordes redondeados */
  font-family: 'Arial', sans-serif;
  transition: background-color 0.3s;
  cursor: pointer;
  font-weight: bold;
}

.btn-capacitate:hover {
  background-color: #FFC300; /* tono más oscuro al pasar el mouse */
}

