/* Reset básico */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* Body general */
body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.contenedor {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar */
.navbar {
  background-color: #fcfbf9;
  border-bottom: 2px solid #eee;
  top: 0;
  z-index: 100;
}

.navbar .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
}

.logo .img-navbar {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #8b0000;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #a62a2a;
}

/* Footer */
footer {
  background-color: darkred;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid #a94444;
  font-size: 0.95rem;
}

footer .footer-content p {
  margin: 8px 0;
}

footer a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #dddddd;
}

/* Banner */
.banner {
  background-color: #fcfbf9;
  padding: 20px 0;
  text-align: center;
}

.banner img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Sección de bienvenida */
.bienvenida {
  padding: 20px 20px;
  text-align: center;
  background-color: #fcfbf9;
}

.bienvenida h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bienvenida p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.img-grande {
  width: 100%;
  max-width: 360px;
  margin-top: 0;
}

/* Sección de productos */
.productos {
  padding: 60px 20px;
  background-color: #fcfbf9;
  text-align: center;
}

.productos h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #1e1e1e;
}

.lista-productos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0 auto;
  padding: 0 16px;
}

.producto {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 24px;
  transition: transform 0.2s ease;
}

.producto:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.producto-link {
  text-decoration: none;
}

.producto img {
  width: 100%;
  max-height: 60%;
  max-width: 90%;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: contain;
}

.producto h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.producto .precio {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #8b0000;
}

.producto-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botón limpio */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #8b0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.25s ease;
}

.btn:hover {
  background-color: #a00000;
}

/* Sección de contáctanos */
.contactanos {
  padding: 40px 20px;
  text-align: center;
  background-color: #fcfbf9;
}

.contactanos h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contactanos p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Pestaña de Producto pdp */
#producto-info {
  max-width: 920px;
  margin: 40px auto 80px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333;
  background-color: #fff;
}

.producto-detalle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Imagen */
.producto-imagen img {
  width: 26rem;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Detalles */
.producto-datos {
  margin-left: 1.5rem;
  flex: 1;
  min-width: 280px;
}

.producto-datos h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #8b0000;
}

.producto-datos h3 {
  font-size: 1.6rem;
  font-weight: lighter;
  margin-bottom: 10px;
  color: #692929;
}

.producto-datos p {
  font-size: 1rem;
  margin: 8px 0 16px;
  color: #555;
}

.encabezado-descriptivo {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Botón de WhatsApp */
.btn-wsp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 24px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  border: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-wsp:hover {
  background-color: #1ebc57;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Términos y Condiciones */
.terminos-y-condiciones {
  background-color: #fcfbf9;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 40px auto;
}

.terminos-y-condiciones h1 {
  color: #2a4d69;
  font-size: 1.75rem;
  padding-top: 40px;
}

.terminos-y-condiciones h2 {
  color: #2a4d69;
}

.terminos-y-condiciones p {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  /* General */
  body {
    font-size: 0.95rem;
  }

  .contenedor {
    padding: 0 12px;
  }

  /* Sección de bienvenida */
  .bienvenida h2 {
    font-size: 1.5rem;
  }

  .bienvenida p {
    font-size: 1rem;
  }

  .bienvenida img.img-grande {
    width: 80%;
    max-width: 280px;
    margin-bottom: 10px;
  }

  /* Sección de productos */
  .productos {
    padding: 40px 10px;
  }

  .productos h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .lista-productos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .producto {
    padding: 12px;
  }

  .producto img {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .producto h3 {
    font-size: 1rem;
  }

  .producto .precio {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  /* Página PDP */
  #producto-info {
    margin: 20px auto 60px;
    padding: 20px;
  }

  .producto-detalle {
    flex-direction: column;
    align-items: center;
  }

  .producto-imagen img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .producto-datos {
    margin-left: 0;
    text-align: center;
  }

  .producto-datos h2 {
    font-size: 1.6rem;
  }

  .producto-datos h3 {
    font-size: 1.3rem;
  }

  .producto-datos p {
    font-size: 0.95rem;
  }

  .encabezado-descriptivo {
    font-size: 1.05rem;
  }

  .btn-wsp {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  footer {
    font-size: 0.8rem;
    padding: 25px 10px;
  }
}
