@charset "UTF-8";
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

h1 {
  color: #ffffff;
}
h1.important {
  color: #ffffff !important;
}

h2 {
  color: #111;
}
h2.important {
  color: #111 !important;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.botones {
  text-align: center;
  margin: 30px 0;
}
.botones a {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: red;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.botones a:hover {
  background-color: darkred;
}

@keyframes rebote-suave {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.card {
  animation: rebote-suave 0.8s ease-out;
}

.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
  z-index: 2;
}
.card .card-img-top {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hover-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}
.hover-img:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.img-hamburguesa {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
}

.account-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.social-icons img {
  width: 20px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-grid .menu-item {
  position: relative;
}
.menu-grid .menu-item::after {
  content: "🍔";
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 20px;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-navbar {
  background-color: red;
  background: linear-gradient(135deg, #ff4e50, #de6e18);
}
.custom-navbar .navbar-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.custom-navbar .navbar-brand span {
  color: #ffffff !important;
}
.custom-navbar .nav-link {
  transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover {
  color: yellow !important;
}

.footer {
  background-color: #111;
  color: #ffffff;
  padding: 30px 0;
  font-size: 0.9rem;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: yellow;
}
.footer .container .row {
  row-gap: 20px;
}
.footer .container .col-md-3 {
  margin-bottom: 15px;
}
.footer .container .col-md-3 img {
  margin-right: 10px;
}

.offcanvas-body .nav-link {
  color: black !important;
  transition: color 0.3s ease;
}
.offcanvas-body .nav-link:hover {
  color: yellow !important;
}

.offcanvas-title {
  color: black;
}

.texto-uniforme {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.5rem;
}

.titulo-seccion {
  font-size: 2rem;
  font-weight: bold;
  color: #dc3545;
  text-align: left;
  margin-bottom: 1rem;
  animation: aparecer 0.8s ease-out;
}

.orden-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.productos img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.resumen {
  max-width: 400px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.resumen h2 {
  margin-bottom: 20px;
  color: #111;
}
.resumen label {
  display: block;
  margin-bottom: 10px;
}
.resumen input[type=text] {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.total {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.2em;
}

.mapa-sucursal {
  margin-top: 40px;
  text-align: center;
}
.mapa-sucursal iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border: none;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mapa-sucursal iframe {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .mapa-sucursal iframe {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    text-align: center;
  }
  .footer .footer-item {
    text-align: center;
  }
  .footer .col-md-3 {
    text-align: center;
  }
  .navbar-brand span {
    font-size: 1rem;
  }
}

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