body, html {
  height: 100%;
  margin: 0;
}


.hero {
  position: relative;
  height: 90vh;
  background: url('https://i.pinimg.com/1200x/37/5a/2d/375a2d7ea9bce278383efa8c1400a351.jpg') center/cover no-repeat;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero .content {
  position: relative;
  z-index: 2;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 320px; /* 🔹 más compactas */
}
.card img {
  height: 160px;
  object-fit: cover;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* PANEL LATERAL DEL CARRITO */
.carrito-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.carrito-panel.abierto {
  right: 0;
}

.carrito-body {
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100% - 120px);
}

.carrito-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.carrito-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.carrito-item h6 {
  margin: 0;
  font-size: 0.95rem;
}

.carrito-item .precio {
  color: #f39c12;
  font-weight: bold;
}

.carrito-item .cantidad {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #666;
}

.carrito-item .cantidad button {
  border: none;
  background: #ddd;
  border-radius: 4px;
  padding: 2px 6px;
}

.carrito-item .btn-danger {
  padding: 3px 6px;
  font-size: 0.8rem;
}
 .nosotros{
  margin-left: 110px;
 }

 /* Colores de la Marca (Asegúrate de que estos coincidan con el resto de tu web) */
:root {
    --color-rojo-jordi: #010501; /* Rojo intenso/Fuego */
    --color-amarillo-jordi: #F39C12; /* Amarillo Dorado/Advertencia */
    --color-oscuro: #2C3E50; /* Base oscuro para contraste */
}

/* Estilo para el Footer */
.footer-comida {
    background-color: var(--color-rojo-jordi); /* Fondo rojo intenso */
    border-top: 5px solid var(--color-amarillo-jordi); /* Borde superior amarillo */
    color: white; /* Color del texto */
}

.footer-comida h5 {
    letter-spacing: 1px;
    color: var(--color-amarillo-jordi); /* Títulos en amarillo llamativo */
}

.footer-comida a:hover {
    color: var(--color-amarillo-jordi) !important; /* Resaltar enlaces al pasar el ratón */
}

/* Estilo para los iconos de Redes Sociales */
.btn-social {
    color: white;
    background-color: var(--color-oscuro); /* Fondo oscuro para el icono */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.btn-social:hover {
    background-color: var(--color-amarillo-jordi); /* Cambio de color al pasar el ratón */
    color: var(--color-oscuro);
}
.navbar{
  background-color: #010501;
  border-bottom: 5px solid var(--color-amarillo-jordi); /* Borde superior amarillo */
  color: white !important;
}
.navbar .nav-link {
  color: white !important;
}

.navbar .nav-link:hover {
  color: cyan !important;
}