
.logo{
    width: 50%;
    height: 50%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    font-size: 70px;
}
.contenedor p{
    font-size: 40px;
}
.articulo p{
    text-align: justify;
}
h4{
    font-size: 10px;
}

body {
    font-family: 'Akaya Kanadaka', cursive;
   
}
  /* Contenedor del carrusel */
  #carruselIndicadores {
    width: 60%; /* Ajusta el ancho del carrusel (porcentaje o pixeles) */
    max-width: 600px; /* Máximo ancho del carrusel */
    margin: 50px auto; /* Centra el carrusel horizontalmente y añade margen superior */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Agrega sombra alrededor */
    border-radius: 10px; /* Bordes redondeados */
    overflow: hidden; /* Asegura que el contenido no se desborde */
}

/* Ajusta las imágenes para que no ocupen todo el ancho */
.carousel-item img {
    height: 300px; /* Controla la altura de las imágenes */
    object-fit: cover; /* Ajusta la imagen sin distorsión */
}
/* Header */
header::before {
    content: "";
    display: block;
    margin-bottom: 80px;
}


/* Estilos para el menú de navegación */
nav {
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
    transition: all 0.5s ease-in-out;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav .logo {
    font-size: 35px;
    font-family: 'Impact', sans-serif;
    color: #17202A;
}

.nav .enlaces-header a {
    color: #5D6678;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 15px;
    border-radius: 4px;
}

.nav .enlaces-header a:hover {
    background-color: #f0f0f0;
    color: #17202A;
}

.hamburguer {
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s ease;
}
/* Para celulares pequeños */
@media screen and (max-width: 600px) {
    .main-content {
        margin-top: 80px; /* Ajusta el margen superior */
    }

    .navbar-collapse {
        position: relative;
        background: #fff;
        z-index: 10;
        padding: 10px 0;
    }
}

/* Para tablets (entre 600px y 992px) */
@media screen and (min-width: 601px) and (max-width: 992px) {
    .main-content {
        margin-top: 100px; /* Ajusta según la altura de tu navbar */
    }

    .navbar-collapse {
        position: relative;
        background: #fff;
        z-index: 10;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1rem; /* Ajusta tamaño de texto */
        padding: 8px 12px; /* Ajusta el padding */
    }
}
/* Responsivo */
@media screen and (max-width:600px) {
    .nav {
        padding: 0 10px;
    }

    .contenido-header>img {
        width: 200px;
    }

    .enlaces-header {
        position: relative;
        background: #667db6;
        background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav .menudos {
        clip-path: circle(150% at 100% 0);
    }

    .nav .enlaces-header a {
        color: #fff;
        font-size: 1.2em;
    }

    .hamburguer {
        display: block;
    }

    .cta {
        display: inline-block;
        background: var(--color-btn);
        color: var(--text-btn);
        padding: var(--padding-btn);
        text-align: center;
        text-decoration: none;
    }

    .bg {
        opacity: 1;
        background-image: radial-gradient(#444CF7 0.7px, transparent 0.7px), radial-gradient(#444CF7 0.7px, #E5E5F7 0.7px);
        background-size: 28px 28px;
        background-position: 0 0, 14px 14px;
        text-align: center;
    }
    .navbar-collapse {
        position: relative; /* Permite que el contenido empuje hacia abajo */
        background: #fff; /* Fondo blanco para que se distinga */
        z-index: 10; /* Para que esté encima del contenido */
        padding: 10px 0; /* Ajusta espacio interno */
    }
}

.navbar-nav .nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    background-color: #f0f0f0; /* Fondo claro al pasar el cursor */
    color: #17202A; /* Texto más oscuro al pasar el cursor */
}

/* Estilos para el pie de página */
.main-footer {
    background: #151515;
    color: white;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.footer_section {
    margin-bottom: 20px;
}

.footer_section .logo {
    width: 200px; /* Ajusta el tamaño del logo */
    margin-bottom: 15px;
}

.footer_title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.footer_txt {
    color: #ccc;
    margin-bottom: 15px;
}

.footer_link {
    color: #bbb;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer_link:hover {
    color: #fff;
}

.footer_input {
    background: #2a2a2a;
    color: white;
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    margin-top: 10px;
}

.footer_input::placeholder {
    color: #bbb;
}

.copy {
    color: #888;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.footer_section i {
    color: #bbb;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer_section i:hover {
    color: #fff;
}

/* Grid para pantallas grandes */
@media screen and (min-width:1024px) {
    .main-footer {
        grid-template-columns: repeat(4, 1fr);
    }
    .copy {
        grid-column: 1 / span 4;
        text-align: center;
    }
}
/* Ajuste de colores y espaciado para mejorar la legibilidad */
footer h2 {
    color: #ffffff;
}

footer p,
footer a {
    color: #cccccc !important; /* Texto más claro */
}

footer a:hover {
    color: #ffffff !important; /* Texto blanco al pasar el cursor */
}

.form-control::placeholder {
    color: #999999; /* Placeholder más claro */
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Estilo del contendor */

.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}


.contenedor1 {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 60px 0;
}
.textos-header {
    margin: 0 0 0 30px;
}

.contenido-header p {
    font-weight: 100;
    margin-top: 14px;
    color: #5D6678;
}


.contenido-header a {
    margin: 28px 0 0 0;
    width: 130px;
    display: inline-block;
    background: #1FDE82;
    text-align: center;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}

.titulo {
    font-size: 50px;
}

/* About us */

.about-us {
    background: #f2f2f2;
}

.contenedor-articulo {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    justify-content: space-around;
}

.articulo {
    width: 29%;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 45px 30px 60px 30px;
    transition: 0.5s;
}

.articulo:hover {
    box-shadow: 0 4px 10px rgba(17, 29, 48, .26);
}

.articulo > i {
    font-size: 30px;
    color: #fff;
    background: #171a15;
    display: flex; /* Cambiamos a flex para mayor control */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    width: 80px; /* Aumenta ligeramente el tamaño para ver si ayuda con el espacio */
    height: 80px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
    overflow: hidden;
    margin: 0 auto; /* Centrar el contenedor dentro de su sección */
}

.articulo > i img {
    max-width: 60%; /* Ajusta la imagen dentro del contenedor circular */
    max-height: 60%; /* Ajusta la imagen sin deformarse */
    object-fit: contain; /* Ajusta el contenido sin deformar la imagen */
}




.articulo > h3 {
    font-size: 24px;
    margin-top: 30px;
    text-align: center; /* Centramos el texto horizontalmente */
}


.articulo>p {
    font-weight: 100;
    color: #5D6678;
    margin-top: 15px;
    padding-bottom: 20px;
}

.articulo>a {
    color: #5D6678;
    font-weight: 400;
    text-decoration: none;
}

.articulo>a:hover {
    color: #1FDE82;
    transition: color .5s;
}
/* Results */




.articulo2 {
    width: 89%;
    height: 50%;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 45px 30px 60px 30px;
    transition: 0.5s;
}

.articulo2:hover {
    box-shadow: 0 4px 10px rgba(17, 29, 48, .26);
}

.articulo2>i {
    font-size: 30px;
    color: #fff;
    background: #1FDE82;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(31, 222, 130, .46);
}

.articulo2>h3 {
    font-size: 24px;
    margin-top: 30px;
}

.articulo2>p {
    font-weight: 100;
    color: #5D6678;
    margin-top: 15px;
    padding-bottom: 20px;
}

.articulo2>a {
    color: #5D6678;
    font-weight: 400;
    text-decoration: none;
}

.articulo2>a:hover {
    color: #1FDE82;
    transition: color .5s;
}
/* Results */

.results {
    background: #2570ff;
    padding-top: 30px;
}

.conten-results {
    display: flex;
    justify-content: space-evenly;
}

.numbers {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.numbers .number {
    width: 45%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 10px;
    padding: 40px 35px;
    margin-bottom: 20px;
}

.numbers .number h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

.numbers .number p {
    color: #f2f5fc;
    font-weight: 300;
}

.results-text {
    width: 37%;
}

.results-text h4 {
    color: #fff;
    font-size: 40px;
}

.results-text p {
    color: #fff;
    font-weight: 300;
    margin: 20px 0;
}


.results-text>a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 0;
    width: 120px;
    text-align: center;
    border-radius: 5px;
}
/* Breakpoints responsive */

@media screen and (max-width:800px) {
    .titulo {
        font-size: 45px;
    }

    .contenido-header {
        flex-direction: column;
        justify-content: space-evenly;
        height: 720px;
    }

    .contenido-header>img {
        width: 400px;
    }

    .textos-header {
        margin: 0;
    }

    /* About us */

    .articulo {
        width: 45%;
    }

    /* Questions */

    .questions {
        height: 720px;
        justify-content: space-evenly;
        flex-direction: column;
    }

    .questions>img {
        width: 400px;
    }

    /* results */

    .conten-results {
        flex-direction: column-reverse;
    }

    .results-text>a {
        margin-bottom: 60px;
    }

    .numbers {
        width: 100%;
        /* justify-content: space-between; */
    }

    .results-text {
        width: 100%;
    }

    /* Services */

    .services {
        flex-direction: column-reverse;
        align-items: center;
    }

    .box-skills {
        margin: 0 0 40px 0;

    }

    .box-skills h4 {
        width: 500px;
    }

    .services>img {
        width: 400px;
    }

    /* Footer */

    footer {
        justify-content: space-evenly;
    }

    .partFooter {
        width: 40%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:600px) {
    .titulo {
        font-size: 35px;
    }

    h1 {
        font-size: 40px;
    }

    .contenido-header {
        height: 650px;
    }

    .nav {
        padding: 0 10px;
    }

    .contenido-header>img {
        width: 200px;
    }

  /* About us */

  .articulo {
    width: 95%;
}
 /* results */

 .numbers .number {
    width: 95%;
}

.results-text h4 {
    font-size: 35px;
}

/* Services */

.services>img {
    width: 200px;
}

.box-skills h4 {
    width: 100%;
}

}
/* ia */
/* Contenedor principal */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: block;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-left: 10px;
}

.close-btn:hover {
    color: #ccc;
}

.form {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.input-data {
    display: flex;
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
}

.input-data input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-data button {
    margin-left: 5px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Mensajes */
.inbox {
    display: flex;
    margin-bottom: 10px;
}

.bot-inbox {
    justify-content: flex-start;
}

.user-inbox {
    justify-content: flex-end;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    margin-right: 10px;
}

.icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.msg-header {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    background-color: #e9ecef;
}

.bot-inbox .msg-header {
    background-color: #d1e7dd; /* Verde claro */
}

.user-inbox .msg-header {
    background-color: #007bff; /* Azul */
    color: white;
}
/* fin ia */
/* hipervinculos de libros */
.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #f8f9fa; /* Fondo claro */
    border: 2px solid #6c757d; /* Borde gris */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.icon-link:hover {
    transform: scale(1.1); /* Efecto de zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}

.icon-link img {
    width: 60%;
    height: 60%;
}

.text-muted {
    font-size: 0.9rem;
    color: #6c757d; /* Gris claro */
    transition: color 0.2s ease-in-out;
}

.text-center a:hover + .text-muted {
    color: #0d6efd; /* Azul claro al pasar el cursor */
}
/* fin de 3 hipervinculos */
/* menu login */
/* Estilos generales para la barra de navegación */
.navbar {
    background-color: #ffffff; /* Fondo blanco */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    padding: 15px 30px;
}

/* Texto del menú */
.navbar .nav-link {
    color: #6c757d;
    font-weight: 400; /* Cambiado a normal */
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #343a40;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

/* Dropdown personalizado */
.navbar .dropdown-custom {
    position: relative;
    cursor: pointer;
}

.navbar .dropdown-toggle-custom {
    color: #343a40;
    font-weight: bold; /* Solo aquí se mantiene la negrita */
    font-size: 16px;
    text-transform: capitalize;
}

.navbar .dropdown-toggle-custom:hover {
    color: #0056b3;
}

/* Menú desplegable */
.navbar .dropdown-menu-custom {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.navbar .dropdown-menu-custom li {
    list-style: none;
}

.navbar .dropdown-menu-custom .dropdown-item-custom {
    padding: 10px 20px;
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 400; /* Asegúrate de que el menú tenga texto normal */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-menu-custom .dropdown-item-custom:hover {
    background-color: #f8f9fa;
    color: #0056b3;
}

/* Mostrar el menú al pasar el cursor */
.navbar .dropdown-custom:hover .dropdown-menu-custom {
    display: block;
}

/* fin menu  */
/* encabezado janema */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(to right, #0f2027, #2c5364, #203a43);
    color: white;
    border-radius: 15px;
    
}


.hero-text h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.btn-primary {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
}

.hero-logo h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffdd57;
    text-shadow: 2px 2px #000;
}

marquee {
    font-size: 1.2rem;
    color: #17202a;
    font-weight: bold;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* fin janema */
/* vendedor */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

h1, h2 {
    color: #343a40;
}

.card {
    border: 1px solid #e0e0e0;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

footer {
    background-color: #212529;
    color: #fff;
}

footer p {
    margin: 0;
}
.icon-size {
    width: 100px; /* Tamaño fijo */
    height: 100px; /* Tamaño fijo */
    object-fit: contain; /* Ajusta la imagen dentro de estas dimensiones */
    margin: 0 auto; /* Centra la imagen */
    display: block; /* Garantiza que esté alineada correctamente */
}


.card-img-top {
    object-fit: contain; /* Mantiene la proporción sin recortar */
    padding: 10px; /* Espaciado alrededor de la imagen */
}
