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

/*CONFIGURACIÓN UNIVERSAR - APLICA PARA TODOS LOS ELEMENTOS*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
    font-size: 11px;
}
/*===== BARRA DE NAVEGACIÓN =====*/
/*CABECERA*/
.contenedor_cabecera{
    position: sticky;
    display: flex;
    background-color: #FFFF;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    top: 0px;
    z-index: 1000;
}
/*SECCIÓN DEL LOGO EN LA CABECERA*/
.contenedor_cabecera .logo{
    cursor: pointer; 
    margin-right: auto;
    padding: 0;
    margin:0 ;
    display: flex;
    align-items: center;
    height: 80px;
}
/*CONTENEDOR DE IMAGEN LOGO*/
.contenedor_cabecera .logo img{
    height: 80px;
    width: 100%;
    padding-top: 0px;
}
.sin-linea::after {
    display: none;
}
/*MENÚ DE OPCIONES EN LA CABECERA*/
.contenedor_cabecera a{
    position: relative;
    text-decoration: none;
    color: #3C3636;
    font-size: 13px;
    margin: 10px;
    margin-left: auto;
    font-weight: bold;
    }
/*UNDERLINE DE LAS OPCIONES DEL MENÚ EN ESTADO NORMAL*/
.contenedor_cabecera a::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: scaleX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: #E21C1C;
    transition: transform 50ms ease;
}
/*UNDERLINE DE LAS OPCIONES DEL MENÚ AL PASAR EL CURSOR*/
.contenedor_cabecera a:hover::after{
    transform: translateX(-50%) scaleX(1);
}
/*TEXTO DEL MENÚ AL PASAR EL CURSOR*/
.contenedor_cabecera a:hover{
    font-weight: bold;
    color: #E21C1C;
}
/*BOTON REALIZA TU PEDIDO AQUÍ (HEADER)*/
.btn_whatsapp{
    position: relative;
    background-color: #E21C1C;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 3px;
    border-radius: 25px;
    width: 250px;
    height: 34px;
    margin-left: auto;
}
/*TEXTO DENTRO DE BOTON REALIZA TU PEDIDO AQUÍ*/
.btn_whatsapp a{
    color: white;
    margin-left: 10px;
}
/*IMG DE WHATSAPP DENTRO DE BOTON REALIZA TU PEDIDO AQUÍ*/
.btn_whatsapp img{
    height: 70%;
    width: 20px;
    color: white;
}
.btn_whatsapp:hover{
    background-color: #AA1515;
    cursor: pointer;
}
.btn_whatsapp a:hover{
    color: white;
    text-decoration: none;
}
.rPedido{
    position: sticky;
    background-color: #AA1515;
    height: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 40px;
    z-index: 999;
}
.rPedido img{
    width: 15px;
    height: 50%;
    margin-right: 10px;
}
.rPedido a{
    text-decoration: none;
    color: white;
}
/*===== BANNER =====*/
/* === SLIDER GENERAL === */
.slider {
  position: relative;
  width: 100%;
  height: 550px; /* puedes ajustar la altura */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === TEXTO DEL BANNER === */
.texto {
  position: absolute;
  top: 50%;
  left: 10px; 
  transform: translateY(-50%);
  color: white;
  max-width: 550px; 
  padding: 30px 40px;
  border-radius: 10px;
}

/* Título principal */
.texto h2 {
  font-size: 5.9rem;
  font-weight: 1200;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Párrafo */
.texto p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}
/* Botones del slider */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(90, 72, 72, 0.4);
  color: #f5eaea;
  border: none;
  font-size: 1.5 rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 20;         
  transition: background 0.3s;
}
.prev-btn:hover, .next-btn:hover { background: rgba(73, 57, 57, 0.7); }
.prev-btn { left: 5px; }
.next-btn { right: 5px; }


/*=================== SECCIONES DEL MENÚ ===================*/
/* Sección general */



/* CATEGORIAS */
.categorias {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.menu-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.menu-icons div {
  text-align: center;
  cursor: pointer;
}

.menu-icons img {
  width: 150px;
  height: 150px;
}
/* HHHH */
#menu {
    text-align: center;
    padding: 40px 20px;
}

#menu h2 {
    color: #8a7878;
    font-size: 28px;
    margin-bottom: 10px;
}

#menu p {
    font-size: 18px;
    color: #555;
}

/* Cada categoría de menú (familiares, para dos, etc.) */
.menu-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item p {
    color: #333;
    margin: 10px 0;
}

.menu-item strong {
    color: #E21C1C;
    font-size: 18px;
}

/* Titulares de cada categoría */
section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
/*=================== SECCIONES DEL MENÚ ===================*/

/* Sección general */
#menu {
    text-align: center;
    padding: 40px 20px;
}

#menu h2 {
    color: #E21C1C;
    font-size: 28px;
    margin-bottom: 10px;
}

#menu p {
    font-size: 18px;
    color: #555;
}

/* Cada categoría de menú (familiares, para dos, etc.) */
.menu-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item p {
    color: #333;
    margin: 10px 0;
}

.menu-item strong {
    color: #E21C1C;
    font-size: 18px;
}

/* Titulares de cada categoría */
section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/*=================== SECCIÓN "NOSOTROS" ===================*/
#nosotros {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
}

#nosotros h2 {
    color: #E21C1C;
    font-size: 28px;
    margin-bottom: 20px;
}

#nosotros p {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

#nosotros img {
    margin-top: 25px;
    width: 80%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/*=================== SECCIÓN "CENTRO DE AYUDA" ===================*/
#ayuda {
    background-color: #fff6f6;
    padding: 60px 40px;
}

#ayuda h2 {
    color: #E21C1C;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

#ayuda div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

#ayuda h4 {
    color: #E21C1C;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

#ayuda p {
    color: #333;
    max-width: 300px;
    text-align: center;
    line-height: 1.5;
}

/*=================== ESTILO DE BOTONES ===================*/
.menu-item button {
    background-color: #E21C1C;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.3s ease;
}

.menu-item button:hover {
    background-color: #AA1515;
}

.linea-separadora {
  border: none;
  height: 1px;
  background-color: #868686;
  margin: 0px 0;
  margin-top: 0;
}

/*=============== LOCALES ===============*/
#locales {
  background-color: #ffffff;
}

.locales-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0;
  margin: 0;
}

/* Columna izquierda */
.locales-info {
  width: 50%;
  flex: 1 40 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.locales-info h2 {
  color: #E21C1C;
  font-size: 32px;
  margin-bottom: 15px;
}

.locales-info p {
  font-size: 16px;
  color: #3C3636;
  margin-bottom: 25px;
  line-height: 1.50;
}

.btn-menu {
  background-color: #E21C1C;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.btn-menu:hover {
  background-color: #AA1515;
}

/* Columna derecha */
.locales-lista {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.local {
  background-color: #fff6f6;
  padding: 20px;

}

.local h3 {
  color: #E21C1C;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.local p {
  font-size: 11px;
  color: #3C3636;
  margin-bottom: 6px;
}

.mapa-container {
  width: 100%;
  max-width: 300px;
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mapa-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}


/*===============FOOTER==================*/
.footer {
  background-color: #ffffff;
  color: #3C3636;
  padding: 30px 20px 20px;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer__brand {
  flex: 1 1 200px;
}
.footer__brand img {
  width: 100px;
  margin-bottom: 10px;
}
.footer__social a {
  margin-right: 10px;
  color: #E21C1C;
  font-size: 28px;
}

.footer__section {
  flex: 1 1 200px;
}
.footer__section h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer__section ul {
  list-style: none;
  padding: 0;
}
.footer__section ul li {
  margin-bottom: 6px;
}
.footer__section ul li a {
  color: #3C3636;
  text-decoration: none;
  font-size: 15px;
  text-decoration: none;
}
.footer__section ul li a:hover {
  text-decoration: underline;
}

.footer__payments img {
  width: 40px;
  margin-right: 10px;
}

.footer__bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}