@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f8f9fa;
  color: #333333;
  line-height: 1.5;
  padding-top: 100px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3 {
  font-family: "BBH Bartle", serif;
  color: #333;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: #333;
  color: white;
}
header .contenedor-navegacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  max-width: 100%;
  margin: 0;
  top: 0;
  left: 0;
  padding: 15px 20px;
  z-index: 1000;
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) and (min-width: 768px) {
  header .contenedor-navegacion {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  header .contenedor-navegacion {
    justify-content: center;
  }
}
header .logo {
  color: white;
  font-family: "BBH Bartle", serif;
  font-size: 28px;
  font-weight: bold;
}
header .logo .titulo-destacado {
  color: #ffc107;
}
@media (max-width: 1024px) and (min-width: 768px) {
  header .logo {
    text-align: center;
  }
}
@media (max-width: 767px) {
  header .logo {
    text-align: center;
  }
}
header .contenedor-carrito {
  position: fixed;
  top: 15px;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1001;
  transform: translateY(250%);
}
header {
  /* ÍCONO 🛒 */
}
header .icono-carrito {
  background-color: #333;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
}
header .texto-animado {
  position: absolute;
  right: 50px;
  opacity: 0;
  transform: translateX(100%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  pointer-events: none;
  animation: carrito-auto 10.5s ease forwards;
  animation-delay: 2s;
  animation-iteration-count: 1;
}
@keyframes carrito-auto {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  95% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
header .contenedor-carrito:hover .texto-animado {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

main {
  flex: 1 0 auto;
}

nav .menu-navegacion {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .menu-navegacion li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
}
nav .menu-navegacion li a:hover, nav .menu-navegacion li a.active {
  color: #ffc107;
}
@media (max-width: 1024px) and (min-width: 768px) {
  nav .menu-navegacion {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    background-color: #333;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
  }
  nav .menu-navegacion li a {
    flex-direction: column;
    font-size: 12px;
    color: #ffffff;
  }
  nav .menu-navegacion li a i {
    font-size: 20px;
  }
  nav .menu-navegacion li a.active {
    color: #ffc107;
  }
}

@media (max-width: 767px) {
  nav .menu-navegacion {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    background-color: #333;
    justify-content: center;
    gap: 30px;
    padding: 8px 0;
    z-index: 1000;
  }
  nav .menu-navegacion li a {
    flex-direction: column;
    font-size: 12px;
    color: white;
  }
  nav .menu-navegacion li a i {
    font-size: 20px;
  }
  nav .menu-navegacion li a.active {
    color: #ffc107;
  }
}
footer {
  background-color: #ffc107;
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 40px;
  flex-shrink: 0;
}
footer .enlaces-footer {
  margin-top: 20px;
}
footer .enlaces-footer a {
  margin: 0 10px;
  color: white;
}
footer .enlaces-footer a:hover {
  color: #333;
}

.cuadricula {
  display: grid;
  gap: 20px;
}

.cuadricula-productos {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cuadricula-productos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cuadricula-productos {
    grid-template-columns: 1fr;
  }
}

.cuadricula-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cuadricula-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cuadricula-2 {
    grid-template-columns: 1fr;
  }
}

.cuadricula-img {
  text-align: center;
  margin-bottom: 20px;
}

.boton, .boton-agregar, .boton-ver-mas,
.boton-comprar {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s;
}
.boton:hover, .boton-agregar:hover, .boton-ver-mas:hover,
.boton-comprar:hover {
  background-color: #006d1c;
}

.boton-ver-mas,
.boton-comprar {
  width: 100%;
  margin-bottom: 5px;
}

.boton-ver-mas {
  background-color: #ffffff;
  color: black;
  border: 1px solid #333;
}
.boton-ver-mas:hover {
  background-color: #ffc107;
  color: black;
  border: solid 1px #ffc107;
}

.boton-agregar {
  width: 100%;
  background-color: #ffc107;
  color: black;
}
.boton-agregar:hover {
  background-color: #dc3545;
  color: white;
}

.boton-bloque {
  width: 100%;
}

.boton-categoria {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 20px;
  margin: 5px;
}
.boton-categoria:hover {
  background-color: #333;
  color: #ffc107;
  border-color: #ffc107;
}

.tarjeta, .tarjeta-productos {
  padding: 20px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.tarjeta-productos {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.tarjeta-productos img {
  margin-bottom: 10px;
  border-radius: 5px;
}
.tarjeta-productos h3 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "BBH Bogle", sans-serif;
}
.tarjeta-productos .precio {
  font-size: 30px;
  color: #333;
  font-weight: normal;
  margin: 10px 0;
  font-family: "BBH Bogle", sans-serif;
  display: inline-block;
  padding: 4px 10px;
  border: 2px solid #ffc107;
  border-radius: 6px;
}
.tarjeta-productos .precio:hover {
  background-color: #ffc107;
  color: black;
  border-color: #ffc107;
}
.tarjeta-productos .destacar-text-color-rojo {
  color: #dc3545;
}

.cuadricula-img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://i.postimg.cc/tCVvMjGf/Coder_Menu_img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8f9fa;
  min-height: 250px;
  font-family: "BBH Bartle", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.grupo-formulario {
  margin-bottom: 15px;
}
.grupo-formulario label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.grupo-formulario .input-formulario,
.grupo-formulario .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 3px;
}

.selector-comida {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
}

.contenedor-titulo-bienvenidos {
  text-align: center;
  margin: 40px 0;
  width: 100%;
  max-width: 100vw;
}
.contenedor-titulo-bienvenidos h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.2;
  word-wrap: break-word;
  padding: 0 10px;
  margin: 0 auto;
}
.contenedor-titulo-bienvenidos h1 .bienvenido {
  font-family: "BBH Bogle", sans-serif;
  font-weight: bold;
  color: 0;
}
.contenedor-titulo-bienvenidos h1 .titulo-destacado {
  color: #ffc107;
  display: inline-block;
}
.contenedor-titulo-bienvenidos h1 .titulo-coder {
  color: #333;
  display: inline-block;
}

.lista-categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.contenedor-titulo-seccion {
  text-align: center;
  margin: 40px 0 20px;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  border-radius: 5px;
}
.contenedor-titulo-seccion h2 {
  margin-top: 20px;
  display: inline-block;
  border-bottom: 3px solid white;
  padding-bottom: 5px;
}
.contenedor-titulo-seccion .destacados {
  color: #ffc107;
}
.contenedor-titulo-seccion .titulo-destacado {
  color: #ffc107;
}
.contenedor-titulo-seccion {
  font-size: 1.2rem;
  background-color: #ffc107;
  color: #000000;
}
.contenedor-titulo-seccion .destacados {
  color: #ffffff;
  display: inline-block;
  padding: 4px 10px;
  border: 2px solid #ffc107;
  border-radius: 6px;
  background-color: #dc3545;
}

.contenedor-titulo-pregunta {
  text-align: center;
  margin: 40px 0 20px;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  border-radius: 5px;
}
.contenedor-titulo-pregunta h2 {
  margin-top: 20px;
  display: inline-block;
  border-bottom: 3px solid white;
  padding-bottom: 5px;
}
.contenedor-titulo-pregunta .destacados {
  color: #ffc107;
}
.contenedor-titulo-pregunta .titulo-destacado {
  color: #ffc107;
}
.contenedor-titulo-pregunta {
  font-size: 1.2rem;
  background-color: #000000;
  color: white;
}
.contenedor-titulo-pregunta h2 {
  font-family: "BBH Bogle", sans-serif;
  font-weight: none;
  color: white;
}

.contenedor-boton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: auto;
}
.contenedor-boton .boton-ver-mas {
  display: inline-block;
  width: 30%;
}
@media (max-width: 767px) {
  .contenedor-boton .boton-ver-mas {
    width: 100%;
  }
}

.video-fondo {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

.contenido-principal-nosotros {
  margin-bottom: 80px;
}
.contenido-principal-nosotros section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contenido-principal-nosotros section {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .contenido-principal-nosotros section {
    flex-direction: column !important;
  }
}
.contenido-principal-nosotros:nth-of-type(even) section {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contenido-principal-nosotros:nth-of-type(even) section {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contenido-principal-nosotros:nth-of-type(even) section {
    text-align: center;
  }
}
.contenido-principal-nosotros .video-fondo {
  width: 50%;
  margin-bottom: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contenido-principal-nosotros .video-fondo {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .contenido-principal-nosotros .video-fondo {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contenido-principal-nosotros .tarjeta, .contenido-principal-nosotros .contenido-sobre-video {
  position: static;
  width: 50%;
  height: auto;
  transform: none;
  background-color: transparent;
  background-image: none;
  border: none;
  color: #000000;
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  text-transform: none;
  font-weight: normal;
  text-align: left;
  margin: 0;
  padding: 20px;
  opacity: 1;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contenido-principal-nosotros .tarjeta, .contenido-principal-nosotros .contenido-sobre-video {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .contenido-principal-nosotros .tarjeta, .contenido-principal-nosotros .contenido-sobre-video {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}
.contenido-principal-nosotros .tarjeta p, .contenido-principal-nosotros .contenido-sobre-video p {
  margin-bottom: 1.5rem;
  color: #555;
}
.contenido-principal-nosotros .overlay {
  display: none;
}
.contenedor-imagen-contacto {
  text-align: center;
}
.contenedor-imagen-contacto img {
  border-radius: 10px;
  box-shadow: 2px 2px 5px #ccc;
}

.contenedor-sucursales {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  background-color: #f8f9fa;
}
.contenedor-sucursales .tarjeta-sucursal {
  text-align: left;
  padding: 20px;
  border-radius: 25px;
  border: 0.2px solid #000000;
}
.contenedor-sucursales .tarjeta-sucursal h3 {
  color: #333;
  font-family: "BBH Bogle", sans-serif;
  font-size: 2rem;
}
.contenedor-sucursales .sucursal-destacada {
  color: #dc3545;
}

.animacion-fade-in {
  animation: aparecer 1.5s ease-in;
}

@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer .contenedor-ws {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
}
footer .img-ws {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 767px) {
  footer .contenedor-ws {
    bottom: 90px;
    right: 10px;
    z-index: 1000;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  footer .contenedor-ws {
    bottom: 90px;
    right: 10px;
    z-index: 1000;
  }
}

/*# sourceMappingURL=style.css.map */
