/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo-contenedor {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.logo-img {
  width: 180px;
  max-width: 90%;
  height: auto;
}

/* PANTALLA DE CARGA */
#pantalla-carga {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: desvanecerPantalla 1s ease forwards;
  animation-delay: 2s;
}

.logo-carga {
  width: 220px;
  max-width: 80%;
  animation: zoomLogo 1.2s ease-in-out infinite alternate;
}

@keyframes zoomLogo {
  from {
    transform: scale(1);
    opacity: 0.9;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes desvanecerPantalla {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.intro-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.texto-carga {
  margin-top: 15px;
  color: #f7c04a;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
/* ESTILO GENERAL */
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #f5f5f5;
  line-height: 1.6;
}
 body {
  font-family: "Poppins", sans-serif;
}

/* CONTENEDOR */
.contenedor {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #111, #1d1d1d);
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.logo {
  font-size: 2.8rem;
  color: #f7c04a;
  margin-bottom: 8px;
}

.slogan {
  color: #d6d6d6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* NAVEGACIÓN */
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.nav a:hover {
  background-color: #f7c04a;
  color: #111;
}

/* HERO */
.hero {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.9));
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #f7c04a;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e0e0e0;
  font-size: 1.05rem;
}

/* BOTONES */
.botones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.boton,
.boton-maps {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  align-items:center;
  justify-content:center;
  gap:8px;
}


.boton-wsp {
  background-color: #25d366;
}

.boton-wsp:hover {
  background-color: #1fb557;
  transform: translateY(-2px);
}

.boton-llamar {
  background-color: #f7c04a;
  color: #111;
}

.boton-llamar:hover {
  background-color: #e0ab35;
  transform: translateY(-2px);
}

.boton-maps {
  background-color: #4285f4;
  margin-top: 15px;
}

.boton-maps:hover {
  background-color: #2f6fda;
  transform: translateY(-2px);
}
.boton-maps i{
  margin-right:8px;
}

/* SECCIONES GENERALES */
section {
  padding: 60px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #f7c04a;
}

/* MENÚ */
.menu {
  background-color: #181818;
}

.categoria-menu {
  background-color: #202020;
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.categoria-menu h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.3rem;
  border-left: 4px solid #f7c04a;
  padding-left: 10px;
}

.categoria-menu ul {
  list-style: none;
}

.categoria-menu li {
  padding: 12px 0;
  border-bottom: 1px solid #333;
  color: #e9e9e9;
  font-size: 1rem;
}

.categoria-menu li:last-child {
  border-bottom: none;
}

.categoria-menu span {
  float: right;
  color: #f7c04a;
  font-weight: bold;
}

/* TARJETAS DE PRODUCTOS CON IMAGEN */
.productos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.producto-card {
  background-color: #181818;
  border: 1px solid #2f2f2f;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 240px;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}


.producto-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.producto-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 14px 10px 8px;
}

.precio {
  color: #f7c04a;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* INFO Y CONTACTO */
.info,
.contacto,
.redes {
  background-color: #141414;
  text-align: center;
}

.info p,
.contacto p,
.redes p {
  color: #e0e0e0;
  margin-bottom: 10px;
}

.info a,
.contacto a {
  color: #fffefd;
  text-decoration: none;
}

.info a:hover,
.contacto a:hover {
  text-decoration: underline;
}

.boton-didi {
  background-color: #ff4d4f;
}

.boton-didi:hover {
  background-color: #e63c3f;
  transform: translateY(-2px);
}

.boton-rappi {
  background-color: #ff3b30;
}

.boton-rappi:hover {
  background-color: #e63128;
  transform: translateY(-2px);
}

.boton i {
  margin-right: 8px;
  font-size: 16px;
}

.boton-uber {
  background-color: #000000;
  color: #ffffff;
}

.boton-uber:hover {
  background-color: #222;
  transform: translateY(-2px);
}

/* REDES */

.redes-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-right:8px;
  font-size:16px;
}

.redes-links a {
  text-decoration: none;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.facebook {
  background-color: #1877f2;
}

.facebook:hover {
  background-color: #0f5fcc;
  transform: translateY(-2px);
}

.tiktok {
  background-color: #000000;
  border: 1px solid #444;
}

.tiktok:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background-color: #0b0b0b;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
}

.footer p {
  color: #bdbdbd;
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1fb557;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.95rem;
  }

  .categoria-menu span {
    float: none;
    display: block;
    margin-top: 4px;
  }

  .botones,
  .redes-links {
    flex-direction: column;
    align-items: center;
  }

  .boton,
  .boton-maps,
  .redes-links a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .productos-grid {
    grid-template-columns: 1fr;
  }

  .producto-img {
    height: 210px;
  }
}