:root{
    --verde:#0fe1fd;
    --blanco:#f2f4f5;
    --rojo:#0557f0;
    --oscuro:#9b9898;
    --titulos:'Arima Madurai',cursive;
    --parrafos:'Mulish', sans-serif;
}
html{
    box-sizing: border-box;
    /*1rem = 10px*/
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
    overflow-x: hidden;
}

*,*::after, *::before{
    box-sizing: inherit;
}
/*globales*/
.contenedor{
    max-width: 120rem;
    margin: 0 auto;
    width: 95%;
}
h1,h2{
    font-family: var(--titulos);
}
h3, p, a{
    font-family: var(--parrafos);
}

img{
    max-width: 100%;
}
.verde{
    color: var(--verde);
}
.rojo{
    color: var(--rojo);
}
.ocultar{
    display: none;
}
.btn-cerrar{
    font-size: 3rem;
    font-weight: bold;
    color: var(--blanco);
    position: absolute;
    top: 0;
    right: 50px;
    user-select: none;

}
.pantalla-completa{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 4;
}

@keyframes desplazamiento {
    0%{
        transform: translateX(100%);
    }

    100%{
        transform:translateX(0);
    }
}

.btn-cerrar:hover{
    cursor: pointer;
}

.btn{
    text-decoration: none;
    color: var(--blanco);
    font-size: 2rem;
    text-transform: capitalize;
    padding: 1rem 5rem;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

@media(min-width: 768px) {
    .btn{
        font-size: 2.2rem;
    }
}
.bordes{
    border: 3px solid var(--blanco);
}
@media(min-width: 768px) {
    .bordes{
        border: 4px solid var(--blanco);
    }
}

.bordes:hover{
    color: var(--verde);
    background-color: var(--blanco);
}
.btn-rojo{
    background-color: var(--rojo);
    font-weight: bold;
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.btn-verde{
    background-color: var(--verde);
    border: none;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: var(--parrafos);
}
.btn-verde:hover{
    background-color: var(--rojo);
}
/*encabezado*/
.contenedor-navegacion{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: var(--oscuro);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contenido-navegacion{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
   
}
.logo h2, .navegacion a {
  color: var(--blanco);  
}
.logo h2{
    font-size: 3rem;
}
.navegacion a{
    text-decoration: none;
    font-size: 2.2rem;
    padding: 1.5rem;
    padding-left: 4rem;
    display: block;
    transition: color .3s ease-in-out;
    text-align: center;
}

@media(min-width: 768px) {
    .navegacion a{
        text-align: left;
    }
}


.navegacion a:nth-child(even):hover{
    color: var(--rojo);
}
.navegacion a:nth-child(odd):hover{
    color: var(--verde);
}
.navegacion a:first-of-type{
    margin-top: 5rem;
}
.navegacion{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 40rem;
    padding: 3rem 4rem;
    background-color: var(--oscuro);
    animation: desplazamiento .5s ease-in-out;
}

.hamburguesa:hover{
    cursor: pointer;
}

.hamburguesa span{
    background-color: var(--blanco);
    display: block;
    width: 5rem;
    height: .5rem;
    margin-bottom: .5rem;
}

/*video*/
.contenido-header{
    position: relative;
}

.contenido-header::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}

.texto-encabezado{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.texto-encabezado h2{
    color: var(--blanco);
    font-size: 4rem;
}

@media(min-width: 768px) {
    .texto-encabezado h2{
        font-size: 8rem;
    }
}

video{
    width: 100%;
    height: 100%;
}

/*sobre nosotros*/
.contenedor-nosotros{
    
    padding-top: 5rem;
}
@media(min-width: 768px) {
    .contenedor-nosotros{
        display: flex;
         justify-content: space-between;
    }   
}
.texto-nosotros, .imagenes-nosotros{
   
    flex: 0 0 calc(50% - 1rem) ;
}
.texto-nosotros .bienvenida{
    font-size: 4rem;
    color: var(--verde);
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros .bienvenida{
        text-align: left;
    }
}
.texto-nosotros h1{
    font-size: 5rem;
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros h1{
        text-align: left;
    }
}
.texto-nosotros p{
    font-size: 2rem;
    text-align: center;
}
@media(min-width: 768px) {
    .texto-nosotros p{
        text-align: left;
    }
}
.imagenes-nosotros{
    display: flex;
    justify-content: space-between;
}
.imagenes-nosotros img{
    border-radius: 5px;
}
.imagen1, .imagenes2{
    flex: 0 0 calc(50% - 1rem);
}
.imagenes2 img{
    margin-bottom: 1rem;
}
.menu{
    padding-top: 4rem;
}
/*platillos*/
.texto-platillos{
    text-align: center;
    font-size: 5rem;
}

.botones-platillos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.botones-platillos button{
    flex: 0 0 calc(50% - 1rem);
    padding: 1rem 3rem;
}
@media(min-width: 768px) {
    .botones-platillos{
        display: inline-block;
    }
    .botones-platillos button{
        flex: unset;
    }
}
@media(min-width: 768px) {
    .platillos{
        display: flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}
.platillo{
    flex: 0 0 calc(33.3% - 1rem);
    border: 1px solid #e1e1e1;
    padding: 2rem;
    border-radius: 5px;
}
.platillo h2{
    text-align: center;
}
.platillo p{
    font-size: 1.8rem;
}
.precio{
    display: flex;
    justify-content: space-between;
}
.precio p{
    font-weight: bold;
    font-size: 2rem;
}
.precio button{
    padding:1rem;
    border-radius: 5px;
    border: none;
    background-color: var(--rojo);
    color: var(--blanco);
    height: 3.8rem;
}
.separador{
    background-image: url('../assets/img/prueba1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}
.separador::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: -1;
}

.contenido-separador{
    padding: 5rem;
}

.contenido-separador h2{
    font-size: 4rem;
    color: var(--blanco);
    text-align: center;
}
@media(min-width: 768px) {
    .contenido-separador h2{
        text-align: left;
        font-size: 5rem;
        color: var(--blanco);
    }
}
.contenido-separador p{
    color: var(--blanco);
    font-size: 3rem;
    text-align: center;
}
@media(min-width: 768px) {
    .contenido-separador p{
        text-align: left;
    }
}

/*seccion del chef*/
.chef h2{
    background-color: var(--rojo);
    display: inline-block;
    padding: 1rem 3rem;
    color: var(--blanco);
    font-size: 4rem;
}
@media(min-width: 768px) {
    .contenido-chef{
        display: flex;
        justify-content: space-between;
    }
}
.texto-chef, .imagen-chef{
    flex: 0 0 calc(50% - 1rem);
}
.texto-chef h3{
    font-size: 3rem;

}
.texto-chef p{
    font-size: 2rem;
    
}
.formulario-contacto{
    padding-top: 5rem;
}
/*formulario contacto*/
@media(min-width: 768px) {
    .formulario-contacto{
        display: flex;
    }
}
.informacion-contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.informacion-contacto, .formulario{
    flex: 0 0 calc(50% - 1rem);
}
.informacion-contacto{
    background-color: var(--oscuro);
    padding: 2rem;
}

.informacion-contacto h3, .informacion-contacto p, .redes-sociales i{
    color: var(--blanco);
}
.informacion-contacto h3{
    font-size: 4rem;
    font-family: var(--titulos);
}

.informacion-contacto p{
    font-size: 2.2rem;
  
}
.informacion-contacto i{
    margin-right: 1rem;
}

.redes-sociales{
    font-size: 3rem;
}

.formulario{
    padding: 5rem;
}

.input-formulario label{
    display: block;
    font-size: 2rem;
    font-family: var(--parrafos);
    margin-bottom: 1.5rem;
}

.input-formulario input, .input-formulario textarea{
    width: 100%;
}
.input-formulario input, .input-formulario textarea{
    padding: 1rem 1.6rem;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    outline: none;
    font-family: var(--parrafos);
}
.input-formulario textarea{
    height: 20rem;
    resize:none;
}

.pie-pagina{
    margin-top: 5rem;
    background-color: rgb(20,20,20);
    padding: 5rem;
}
@media(min-width:768px){
    .contenedor-piepagina{
        display: flex;
        justify-content: space-between;
    }

}
.info{
    flex: 0 0 calc(25% - 1rem);
    margin-bottom: 2rem;
}
.info h3, .info p{
    color: var(--blanco);
    text-align: center;
}
.info h3{
    font-size: 2.2rem;
}
.info p{
    font-size: 1.8rem;
}

.redes-pie{
    text-align: center;
}
.info input[type="email"]{
    font-family: var(--parrafos);
    display: inline-block;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
    outline: none;
    width: 100%;
}

.info input[type="submit"]{
    padding: .5rem 2rem;
    font-size: 1.8rem;
    border-radius: 0;
}
.footer{
    text-align: center;
    background-color: var(--oscuro);
    color: var(--blanco);
    padding: 2rem;
    font-size: 2rem;
}

/* Contenedor del logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre logo y texto */
}

/* Imagen del logo */
.logo-imagen {
    max-height: 50px; /* Tamaño del logo */
    width: auto;
}

/* Texto del nombre */
.logo h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000; /* Ajusta según el diseño */
}

.verde {
    color: #00bfff; /* Cambia el color del texto "Free" */
}

.rojo {
    color: #0004ff; /* Cambia el color del texto "ze" */
}

.marca-icono {
    width: 50px; /* Ajusta el tamaño según tus necesidades */
    height: 50px;
    object-fit: contain; /* Asegura que las imágenes se ajusten sin deformarse */
    display: block;
    margin: 0 auto;
}

.botones-platillos {
    display: flex;
    justify-content: center; /* Centra los botones */
    gap: 1rem; /* Reduce el espacio entre botones */
    margin-bottom: 2rem; /* Espacio entre los botones y el contenido */
}

.botones-platillos button {
    position: relative; /* Para controlar mejor la imagen */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px; /* Tamaño fijo del botón */
    height: 60px; /* Tamaño fijo del botón */
    border: none;
    background-color: transparent; /* Fondo transparente */
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden; /* Oculta cualquier exceso de imagen */
}

.botones-platillos button img {
    width: 100%; /* Imagen ocupa todo el ancho del botón */
    height: 100%; /* Imagen ocupa toda la altura del botón */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente sin deformarse */
    border-radius: 5px; /* Opcional: redondear esquinas */
}

.botones-platillos button.todos {
    background-color: var(--verde); /* Fondo para el botón "Todos" */
    color: rgb(17, 17, 17);
    font-size: 2rem;
    height: 60px; /* Altura consistente con los demás botones */
}


.botones-platillos button:hover {
    transform: scale(1.05); /* Efecto de hover */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.platillo img {
    display: block; /* Asegura que las imágenes de los productos se muestren */
    width: 100%; /* Ajusta la imagen al tamaño del contenedor */
    height: auto; /* Mantiene proporciones */
    border-radius: 5px; /* Esquinas redondeadas */
}

.contacto {
    padding: 2rem;
    background-color: #f7f7f7;
}

.contenedor-contacto {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.informacion-mapa {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Espacio entre los elementos */
    justify-content: center; /* Centra ambos elementos horizontalmente */
    align-items: flex-start;
}

.informacion-contacto {
    flex: 1;
    background-color: #817d7dc7;
    color: #003366;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 2;
    text-align: center; /* Centra el texto */
    font-size: 1rem; /* Agranda las letras */
    height: 700px; /* Altura mantenida */
    max-width: 35%; /* Limita el ancho del cuadro */
}

.mapa {
    flex: 1;
    height: 650px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 40%; /* Limita el ancho del mapa */
}


.informacion-contacto h3 {
    font-size: 3rem; /* Aumenta el tamaño del título */
    margin-bottom: 1rem;
    color: #007bff; /* Azul para el título */
}

.informacion-contacto p {
    font-size: 2rem; /* Ajusta el tamaño del texto */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.informacion-contacto p i {
    margin-right: 0.5rem; /* Espaciado entre ícono y texto */
}

.informacion-mapa {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center; /* Centra los elementos verticalmente */
}

.mapa {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0; /* Remueve cualquier margen */
    max-width: 35%; /* Asegura un buen ancho */
    max-height: 550px; /* Ajusta la altura máxima */
    height: 1; /* Mantiene la proporción */
}




.formulario {
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Añade sombra al formulario */
    max-width: 800px;
    margin: 0 auto; /* Centra el formulario */
}

.redes-sociales a {
    margin: 0 10px; /* Espaciado horizontal entre íconos */
    text-decoration: none; /* Elimina subrayado de los enlaces */
    color: inherit; /* Usa el color original del ícono */
}

.redes-sociales a:hover i {
    color: #007bff; /* Cambia el color al pasar el cursor */
    transform: scale(1.2); /* Agranda un poco el ícono */
    transition: all 0.3s ease;
}

/* Nueva sección del formulario */
.formulario-seccion {
    padding: 4rem 2rem;
    background-color: #f7f7f7;
    text-align: center;
}

.titulo-formulario {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.contenedor-formulario {
    max-width: 550px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.formulario {
    max-width: 500px; /* Hace el formulario más delgado */
    margin: 0 auto;
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-size: 1.2rem; /* Hace las etiquetas más grandes */
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem; /* Aumenta el padding para mejor legibilidad */
    font-size: 1.1rem; /* Hace el texto dentro de los inputs más grande */
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
}

form textarea {
    height: 150px; /* Ajusta el tamaño del área de mensaje */
}

form button {
    background-color: #007bff;
    color: #fff;
    font-size: 1.2rem; /* Aumenta el tamaño del texto en el botón */
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

.mapa {
    border: 4px solid #007bff; /* Marco azul */
    border-radius: 10px; /* Bordes redondeados */
    overflow: hidden; /* Evita que el mapa sobresalga */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para mejor apariencia */
}

/* Estilos del botón flotante */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-widget img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-widget img:hover {
    transform: scale(1.1);
}

/* Contenedor del chat */
.chat-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Encabezado del chat */
.chat-header {
    background: #075E54;
    padding: 12px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-text {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-size: 16px;
    font-weight: bold;
}

.chat-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Cuerpo del chat */
.chat-body {
    background: url('assets/img/whatsapp-pattern.png');
    padding: 15px;
    font-size: 14px;
}

.chat-date {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.chat-message {
    background: white;
    padding: 8px;
    border-radius: 8px;
    max-width: 80%;
    position: relative;
}

.chat-message .chat-sender {
    font-size: 12px;
    font-weight: bold;
    color: #075E54;
}

.chat-message p {
    margin: 5px 0;
}

.chat-time {
    font-size: 10px;
    color: gray;
    text-align: right;
    display: block;
}

/* Pie del chat */
.chat-footer {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
}

.send-button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 5px;
}

.send-button img {
    width: 40px;
    height: 40px;
}

/* TE BUSCAMOS */

.empleo {
    text-align: center; /* Centra todo el contenido */
    margin: 120px auto; /* Mayor separación entre secciones */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido horizontalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    background-color: #9e9999; /* Fondo gris claro */
    padding: 60px 20px; /* Espaciado interno para que se vea mejor */
    border-radius: 10px; /* Bordes redondeados para mejor estética */
}

.titulo-empleo {
    font-size: 3.5rem; /* Hace el título más grande */
    font-weight: 900; /* Hace el texto más grueso */
    text-align: center; /* Centra el texto */
    margin-bottom: 40px; /* Separa el título de la imagen */
    color: #004AAD; /* Color azul oscuro llamativo */
    text-transform: uppercase; /* Pone el texto en mayúsculas */
    letter-spacing: 3px; /* Espaciado entre letras */
    font-family: 'Poppins', sans-serif; /* Fuente más atractiva */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Sombra para resaltar el texto */
}

.imagen-empleo {
    display: flex;
    justify-content: center;
    width: 100%; /* Asegura que la imagen se mantenga centrada */
}

.imagen-empleo img {
    max-width: 80%; /* Ajusta el ancho de la imagen */
    height: auto;
    border-radius: 10px; /* Agrega bordes redondeados para un diseño más elegante */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); /* Agrega una sombra para resaltar la imagen */
}


/* MODAL */

/* Estilos para el fondo del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000; /* Se asegura de que esté por encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor de la ventana emergente */
.modal-contenido {
    background: #f0f0f0;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 80%; /* Aumenta el tamaño del modal */
    max-width: 800px; /* Más ancho */
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

/* Estilo del título dentro del modal */
.titulo-modal {
    font-size: 3.5rem; /* Hace el título más grande */
    font-weight: bold;
    color: #004AAD;
    margin-bottom: 20px;
}

/* Imagen dentro del modal */
.modal-contenido img {
    width: 100%; /* Ocupa todo el ancho del modal */
    height: auto;
    border-radius: 10px;
}

/* Botón para cerrar */
.cerrar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.cerrar:hover {
    color: red;
}

/* encabezado actualizado */

.franja-negra {
    background-color: black;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;  /* Posición fija en la parte superior */
    z-index: 10; /* Asegura que la franja negra esté encima */
    margin: 0;  /* Elimina márgenes innecesarios */
}

.contenedor-navegacion {
    background-color: var(--oscuro);
    height: 50px;  /* La franja gris tiene la misma altura que la franja negra */
    position: fixed;
    top: 50px;  /* Coloca la franja gris justo debajo de la franja negra */
    width: 100%;
    z-index: 9;  /* Asegura que la franja gris esté debajo de la franja negra */
}

.franja-negra {
    background-color: black;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0; /* Fija la franja en la parte superior */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
}

.contenedor-info {
    display: flex;
    justify-content: space-between;
    width: 60%;
    align-items: center;
    margin: 0 auto;
}

.info-item {
    margin-right: 20px;  /* Aumenta el margen entre los elementos de información */
}

.info-item span {
    margin-left: 5px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;  /* Aumenta la separación entre los iconos */
}

.social-icon {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding-right: 20px;  /* Separa los iconos de la línea */
    position: relative;
}

.social-icon:after {
    content: "|";
    color: white;
    position: absolute;
    right: 0;
    top: 50%;  /* Ajustamos para centrar la línea en el medio del icono */
    transform: translateY(-50%);  /* Asegura que la línea esté completamente centrada */
    font-size: 25px;  /* Ajustamos el tamaño de la línea */
    padding-left: 15px;  /* Separa un poco más las líneas de los iconos */
}

.social-icon:last-child:after {
    content: "";  /* Elimina la línea en el último icono */
}

/* Cambiar color a azul al pasar el mouse */
.social-icon:hover {
    color: blue;
    transform: scale(1.3);  /* Aumenta el tamaño del icono */
}

.info-item a {
    color: white;
    text-decoration: none;  /* Elimina el subrayado de los enlaces */
}

.info-item a:hover {
    color: blue;  /* Cambia el color al pasar el mouse */
}

.logo-empresa {
    max-width: 550px;  /* Ajusta el tamaño máximo del logo */
    height: auto;      /* Mantiene la proporción del logo */
}


.texto-encabezado {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Centrado */
}

.texto-encabezado h2 {
    color: var(--blanco);
    font-size: 8rem; /* Tamaño del título */
    margin-bottom: 0; /* Elimina el margen inferior para acercar el texto */
}

.subtitulo {
    color: white; /* Color blanco */
    font-size: 2rem; /* Ajusta el tamaño según tu preferencia */
    margin-top: -10px; /* Reduce el margen superior para pegarlo más al título */
}

.logo-imagen {
    width: 300px; /* Ajusta el tamaño del logo según lo necesites */
    height: auto; /* Mantiene la proporción del logo */
}

.contenedor-navegacion {
    display: flex;
    align-items: center; /* Centra el contenido verticalmente */
    justify-content: space-between;
    padding-top: 0px; /* Agrega un poco de espacio en la parte superior */
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el logo y el texto */
    margin-top: 0; /* Ajusta la distancia desde el borde superior */
}

/* Estilos de la franja negra */
/* Estilos de la franja negra */
.franja-negra {
    background-color: black;
    height: 50px; /* Altura de la franja negra */
    width: 100%;
    position: fixed;
    top: 0; /* Fija la franja en la parte superior */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px; /* Ajuste en el espacio a los lados */
    color: white;
    box-sizing: border-box; /* Asegura que el contenido no se desborde */
    overflow: hidden; /* Evita que cualquier contenido sobresalga */
}

/* Contenedor dentro de la franja negra */
.contenedor-info {
    display: flex;
    justify-content: space-between;
    width: 60%; /* Asegura que ocupe todo el espacio disponible */
    max-width: 1200px; /* Máximo ancho para pantallas grandes */
    align-items: center;
    margin: 0 auto; /* Centra el contenido */
    box-sizing: border-box; /* Asegura que los márgenes no causen desbordamiento */
}

/* Asegurarse de que los elementos no se desborden en la franja negra */
.info-item {
    margin-right: 5px; /* Reduce el espacio entre los iconos */
    white-space: nowrap; /* Evita que el contenido se divida en varias líneas */
    overflow: hidden; /* Evita que el contenido sobresalga */
    text-overflow: ellipsis; /* Agrega puntos suspensivos si el contenido es demasiado largo */
}

/* Íconos sociales */
.social-icons {
    display: flex;
    gap: 10px; /* Reduce el espacio entre los íconos sociales */
}

/* Cuando el ícono social se pasa por encima */
.social-icon {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Ajustes para pantallas pequeñas */
@media(max-width: 768px) {
    .contenedor-info {
        flex-direction: column; /* Los elementos dentro de la franja se apilan verticalmente */
        align-items: center; /* Centra los elementos */
        gap: 0.5rem; /* Reduce el espacio entre los elementos */
    }

    .info-item {
        margin-right: 0; /* Elimina el margen a la derecha en pantallas pequeñas */
    }

    .social-icons {
        justify-content: center; /* Centra los íconos sociales */
        gap: 0.5rem; /* Menos espacio entre los íconos */
    }

    .franja-negra {
        padding: 0 10px; /* Ajusta el espacio a los lados en pantallas pequeñas */
    }
}

.libro-reclamaciones {
    display: block;
    margin-top: 10px;
    max-width: 150px; /* Ajusta el tamaño */
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


/* AYUDA */
.seccion-ayuda {
    position: relative; /* Necesario para el overlay */
    color: white;
    background-image: url('../assets/img/necesitas.png'); /* Ruta de la imagen de fondo */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}

/* Overlay azul semi-transparente */
.seccion-ayuda::before {
    content: ""; /* Crea un pseudo-elemento */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 120, 212, 0.5); /* Azul con transparencia (ajustar la opacidad) */
    z-index: 1; /* Asegura que el overlay quede encima de la imagen, pero debajo del contenido */
}

.contenido-ayuda {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2; /* Asegura que el contenido esté encima del overlay */
}

.titulo-ayuda {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding: 0 10px;
    border-bottom: 2px solid white;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-asesor {
    display: inline-block;
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-asesor:hover {
    background-color: #0088cc;
}





