/* NAVBAR Y HEADER */
/* FOOTER CONTACT FIX - FORZAR ELEMENTOS EN COLUMNA */
.footer .contact-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.footer .contact-info p {
  display: flex !important;
  width: 100% !important;
  margin-bottom: 15px !important;
}

body {
  padding-bottom: 0;
  margin: 0;
  /* FONDO CARNE ASADA */
  background: #8b4513 !important;
  background: linear-gradient(
    45deg,
    #8b4513 0%,
    /* Café carne */ #a0522d 25%,
    /* Café claro */ #8b4513 50%,
    /* Café carne */ #654321 75%,
    /* Café oscuro */ #8b4513 100% /* Café carne */
  ) !important;

  /* Textura de carne visible */
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(160, 82, 45, 0.4) 4px,
      transparent 4px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 69, 19, 0.3) 3px,
      transparent 3px
    ),
    linear-gradient(60deg, rgba(255, 248, 220, 0.1) 2px, transparent 4px) !important;

  background-size: 50px 50px, 30px 30px, 80px 80px !important;

  background-attachment: fixed !important;
  min-height: 100vh !important;
}

.navbar {
  background: #000000;
  box-shadow: 0 2px 12px #0001;
  padding: 0.5em 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  color: #fff;
  text-decoration: none;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  margin-right: 0.7em;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 6px #0006;
  object-fit: contain;
  padding: 4px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s;
}
.nav-menu li a.active,
.nav-menu li a:hover {
  color: #e63946;
}
.cart-icon {
  position: relative;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 1.5em;
  color: #000000;
  background: #ffffff;
  padding: 0.4em;
  border-radius: 50%;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.cart-icon:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    padding: 0 1em;
  }
  .nav-menu {
    gap: 1em;
  }
  .nav-logo img {
    width: 36px;
    height: 36px;
  }
  .cart-icon {
    font-size: 1.3em;
    padding: 0.3em;
  }
  #cart-count {
    font-size: 10px;
    padding: 3px 6px;
    top: -3px;
    right: -3px;
  }
}
/* Header destacado para la tienda */
.tienda-header {
  background: url("../img/hero.jpg") center/cover no-repeat;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 8px #000a;
  margin-bottom: 2em;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 16px #0002;
}
.tienda-hero {
  text-align: center;
  padding: 2em 1em;
  /* CONTRASTE CON FONDO DE CARNE */
  background: rgba(255, 255, 255, 0.9) !important;
  margin: 20px auto !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2) !important;
  max-width: 1400px !important;
}
.tienda-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.5em;
}
.tienda-hero p {
  font-size: 1.3rem;
  margin: 0;
}
/* Estilos para la tienda y el carrito */
.tienda-section {
  margin-bottom: 3em;
  min-height: calc(100vh - 400px);
  /* CONTRASTE CON FONDO DE CARNE */
  background: rgba(255, 255, 255, 0.95) !important;
  margin: 20px auto !important;
  padding: 30px !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  max-width: 1400px !important;
  text-align: center;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin-top: 2em;
  margin-bottom: 4em;
  padding-bottom: 2em;
  /* CENTRAR PRODUCTOS - FORZADO */
  justify-content: center !important;
  justify-items: center !important;
  align-content: center !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  place-items: center !important;
  place-content: center !important;
}
.producto-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  height: 100%;
}
.producto-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0.8em;
  background: #f5f5f5;
  padding: 8px;
}
.producto-card h3 {
  margin: 0.3em 0 0.2em 0;
  font-size: 1.1em;
  flex-grow: 1;
  text-align: center;
}
.producto-card p {
  margin: 0.3em 0;
  text-align: center;
  flex-grow: 1;
  font-size: 0.9em;
}
.producto-card .precio {
  font-weight: bold;
  color: #e63946;
  margin: 0.5em 0;
  margin-top: auto;
  font-size: 1.1em;
}
.producto-card button {
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 0.6em 1.3em;
  cursor: pointer;
  font-size: 0.95em;
  transition: background 0.2s;
  margin-top: auto;
}
.producto-card button:hover {
  background: #b71c1c;
}
#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e63946;
  color: white;
  border-radius: 50%;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}
.cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.cart-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cart-modal-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 90vw;
  background: #fff;
  border-radius: 0;
  padding: 0;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#cart-items {
  flex: 1;
  padding: 1em 1.5em;
  overflow-y: auto;
}

.cart-total {
  padding: 1.5em 2em;
  border-top: 2px solid #f0f0f0;
  background: #f8f9fa;
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.cart-total-amount {
  font-weight: bold;
  font-size: 1.2em;
  text-align: right;
}

.cart-buttons {
  display: flex;
  gap: 0.8em;
  flex-direction: column;
}

.vaciar-carrito-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.vaciar-carrito-btn:hover {
  background: #c82333;
}

.continuar-compra-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.2s;
}

.continuar-compra-btn:hover {
  background: #218838;
}

.cart-modal:not(.hidden) .cart-modal-content {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 2em 1em 2em;
  border-bottom: 2px solid #f0f0f0;
  background: #f8f9fa;
  position: sticky;
  top: 0;
  z-index: 10;
}

.cart-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.5em;
  font-weight: 700;
  flex-grow: 1;
  text-align: center;
}

.close-cart-btn {
  background: #e63946;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.close-cart-btn:hover {
  background: #b71c1c;
}
.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  padding: 0.8em 1em;
  background: #f8f9fa;
  border-radius: 8px;
  gap: 0.8em;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.cart-item-details h4 {
  font-weight: bold;
  margin: 0 0 0.2em 0;
  font-size: 0.95em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-details p {
  color: #666;
  font-size: 0.8em;
  margin: 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.3em;
  flex-shrink: 0;
}

.quantity-btn {
  background: #e63946;
  color: white;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #b71c1c;
}

.quantity {
  min-width: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
}

.remove-item {
  background: #dc3545;
  border: none;
  border-radius: 4px;
  padding: 0.25em 0.4em;
  cursor: pointer;
  font-size: 0.9em;
}

.remove-item:hover {
  background: #c82333;
}

.cart-item-subtotal {
  font-weight: bold;
  font-size: 0.95em;
  color: #333;
  text-align: right;
  min-width: 60px;
  flex-shrink: 0;
}

.cart-total {
  font-weight: bold;
  margin: 1em 0;
  text-align: right;
}
#close-cart {
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.7em 1.5em;
  cursor: pointer;
  font-size: 1em;
  float: right;
}
#close-cart:hover {
  background: #b71c1c;
}

/* Modal de detalle del producto */
.producto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.producto-modal.hidden {
  display: none;
}

.producto-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.producto-modal:not(.hidden) .producto-modal-content {
  transform: scale(1);
}

.producto-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.producto-modal-close:hover {
  background: #e63946;
  color: #fff;
  transform: scale(1.1);
}

.producto-modal-body {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.producto-modal-imagen {
  position: relative;
  flex: 1;
  min-height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
}

.producto-modal-imagen img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.producto-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e63946;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}

.producto-modal-info {
  flex: 1;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.producto-modal-info h2 {
  margin: 0 0 1em 0;
  color: #2d2d2d;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
}

.producto-modal-info p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
  flex-grow: 1;
}

.producto-modal-precio {
  margin-bottom: 2em;
}

.precio-actual {
  font-size: 2.2em;
  font-weight: 800;
  color: #e63946;
  display: block;
}

.precio-unidad {
  font-size: 0.9em;
  color: #666;
  font-weight: normal;
  margin-top: 5px;
  display: block;
}

.producto-modal-acciones {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.cantidad-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1em;
}

.cantidad-btn {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cantidad-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.cantidad-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

.btn-agregar-modal {
  background: linear-gradient(135deg, #e63946 0%, #dc3545 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-agregar-modal:hover {
  background: linear-gradient(135deg, #dc3545 0%, #b71c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-agregar-modal i {
  font-size: 1.2em;
}

.producto-imagen {
  cursor: pointer;
  transition: transform 0.2s;
}

.producto-imagen:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .producto-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 2.5vh auto;
  }

  .producto-modal-body {
    flex-direction: column;
  }

  .producto-modal-imagen {
    min-height: 250px;
    padding: 1.5em;
  }

  .producto-modal-imagen img {
    max-width: 250px;
    max-height: 250px;
  }

  .producto-modal-info {
    min-height: auto;
    padding: 1.5em;
  }

  .producto-modal-info h2 {
    font-size: 1.4em;
    text-align: center;
  }

  .precio-actual {
    font-size: 1.8em;
    text-align: center;
  }

  .precio-unidad {
    text-align: center;
  }

  .cart-modal-content {
    width: 100vw;
    max-width: 100vw;
  }

  .cart-header {
    padding: 1em 1.5em;
  }

  #cart-items {
    padding: 1em 1.5em;
  }

  .cart-total {
    padding: 1em 1.5em;
  }

  .cart-logo {
    width: 42px;
    height: 42px;
  }

  .cart-header h2 {
    font-size: 1.3em;
  }

  .close-cart-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cart-buttons {
    gap: 0.6em;
  }

  .vaciar-carrito-btn,
  .continuar-compra-btn {
    padding: 0.7em 1.2em;
    font-size: 0.95em;
  }

  .productos-grid {
    margin-bottom: 5em;
    padding-bottom: 3em;
  }

  .tienda-section {
    margin-bottom: 4em;
  }
}

/* Notificaciones */
.notificacion {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em 1.5em;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  z-index: 3000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}

.notificacion.mostrar {
  transform: translateX(0);
  opacity: 1;
}

.notificacion-success {
  background: #28a745;
}

.notificacion-error {
  background: #dc3545;
}

.notificacion-info {
  background: #17a2b8;
}

/* Estilos personalizados para SweetAlert */
.swal-google-btn {
  background-color: #ffffff !important; /* Fondo blanco oficial de Google */
  border: 1px solid #dadce0 !important; /* Borde gris claro */
  color: #3c4043 !important; /* Texto gris oscuro */
  font-family: "Roboto", "Google Sans", Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
  transition: all 0.2s ease !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swal-google-btn:hover {
  background-color: #f8f9fa !important; /* Hover gris muy claro */
  border-color: #dadce0 !important;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3),
    0 4px 8px 3px rgba(60, 64, 67, 0.15) !important;
  color: #3c4043 !important;
  transform: translateY(-1px) !important;
}

.swal-google-btn:focus {
  background-color: #ffffff !important;
  border-color: #4285f4 !important;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3),
    0 4px 8px 3px rgba(60, 64, 67, 0.15) !important;
  outline: none !important;
}

.swal-google-btn:active {
  background-color: #f1f3f4 !important;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3) !important;
  transform: translateY(0) !important;
}

.swal-account-btn {
  background-color: #28a745 !important; /* Verde para cuenta existente */
  border-color: #28a745 !important;
}

.swal-account-btn:hover {
  background-color: #218838 !important;
  border-color: #218838 !important;
}

.swal-register-btn {
  background-color: #007bff !important; /* Azul para crear cuenta */
  border-color: #007bff !important;
}

.swal-register-btn:hover {
  background-color: #0056b3 !important;
  border-color: #0056b3 !important;
}

.swal-manual-btn {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.swal-manual-btn:hover {
  background-color: #5a6268 !important;
  border-color: #5a6268 !important;
}

/* Hacer que los botones de autenticación aparezcan horizontalmente con mismo tamaño */
.swal2-actions {
  flex-direction: row !important;
  gap: 10px !important;
  justify-content: center !important;
  width: 100% !important;
}

.swal2-actions button {
  flex: 1 !important;
  margin: 0 !important;
  min-width: 140px !important;
  max-width: 140px !important;
  width: 140px !important;
  height: 45px !important;
  font-size: 14px !important;
  padding: 8px 12px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  border-radius: 6px !important;
}

/* Para modales con solo 2 botones, mantener vertical */
.swal2-popup:has(.swal2-actions button:nth-child(2):last-child) .swal2-actions {
  flex-direction: column !important;
}

.swal2-popup:has(.swal2-actions button:nth-child(2):last-child)
  .swal2-actions
  button {
  width: 100% !important;
  max-width: 280px !important;
  min-width: 200px !important;
  font-size: 16px !important;
  height: 48px !important;
  padding: 12px 20px !important;
}

/* Estilos personalizados para SweetAlert2 modal de Google */
.swal-custom-popup {
  background-color: #fff !important;
}

.swal-custom-html {
  color: #000 !important;
}

.swal-custom-html div {
  background-color: #000 !important;
}

.swal-custom-html p {
  color: #fff !important;
}

.swal-custom-html div[style*="color: #fff"] {
  color: #fff !important;
  background-color: #333 !important;
}

.swal-custom-html div[style*="color: #ccc"] p {
  color: #ccc !important;
}

/* ================================
   FOOTER STYLES
   ================================ */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 0 25px; /* Aumentado el padding superior de 40px a 50px */
  margin-top: 0; /* Eliminado margen superior para evitar espacios */
  width: 100%; /* Asegurar que el footer ocupe todo el ancho */
}

.footer-container {
  max-width: 1400px; /* Aumentado de 1200px a 1400px para hacer más ancho */
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px; /* Aumentado de 40px a 50px para más espacio */
  margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
  color: #e63946;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.5em;
  color: #e63946;
}

.footer-section p {
  margin-bottom: 10px;
  color: #cccccc;
  line-height: 1.6;
}

.contact-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.contact-info p {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 18px !important; /* Aumentado de 15px a 18px para más separación */
  color: #ffffff !important;
  padding: 8px 0 !important; /* Añadido padding vertical para más espacio visual */
  border-bottom: 1px solid #2a2a2a !important; /* Añadida línea sutil de separación */
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500; /* Añadido para darle más peso visual */
  font-size: 1em; /* Asegurar tamaño consistente */
}

.contact-info a:hover {
  color: #e63946;
  text-decoration: none; /* Cambiado de underline a none para un look más limpio */
  transform: translateX(3px); /* Añadido efecto de movimiento sutil */
}

.contact-info p:last-child {
  border-bottom: none; /* Remueve la línea inferior del último elemento */
}

.contact-info i {
  color: #e63946;
  margin-right: 15px; /* Aumentado de 12px a 15px para más espacio */
  width: 22px; /* Aumentado de 20px a 22px */
  text-align: center;
  flex-shrink: 0;
  font-size: 1.1em; /* Añadido para hacer los íconos ligeramente más grandes */
}

.contact-hours {
  margin-top: 25px; /* Aumentado de 20px a 25px */
  padding-top: 20px; /* Aumentado de 15px a 20px */
  border-top: 2px solid #e63946; /* Cambiado de 1px solid #333333 a 2px solid #e63946 para mayor visibilidad */
}

.contact-hours p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #ffffff; /* Cambiado de #cccccc a #ffffff para mayor contraste */
  font-size: 1em; /* Aumentado de 0.9em a 1em */
  font-weight: 500; /* Añadido para darle más peso visual */
}

.contact-hours i {
  color: #e63946;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ffffff;
  color: #e63946;
  transform: translateY(-2px);
}

.footer-stats p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #cccccc;
  font-size: 0.9em;
}

.footer-stats i {
  color: #e63946;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #999999;
  font-size: 0.9em;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 0.85em;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  color: #e63946;
  border-color: #e63946;
  text-decoration: none;
}

/* Responsive Footer */
@media (min-width: 1200px) {
  .footer-container {
    max-width: 1500px; /* Aún más ancho en pantallas muy grandes */
  }

  .footer-content {
    gap: 60px; /* Más espacio en pantallas grandes */
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
    margin-bottom: 18px;
    border-bottom: 1px solid #2a2a2a; /* Mantener las líneas separadoras en mobile */
  }

  .contact-hours {
    margin-top: 15px;
    padding-top: 15px;
  }

  .contact-hours p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-stats p {
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-section h4 {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 25px;
  }
}

/* Estilos para el nuevo formato de contacto */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.contact-number {
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-details strong {
  color: #fff;
  font-size: 0.9rem;
}

.contact-details a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Fix para SweetAlert2 toast - evitar que quede debajo del navbar */
.swal-toast-fixed {
  top: 80px !important;
  z-index: 99999 !important;
}
