agregarlo al css: /* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfaf6;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background-color: #1f1f1f;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fdfaf6;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: #c49a6c;
  outline: none;
}

/* OFERTA URGENTE */
.oferta-urgente {
  background-color: #c49a6c;
  color: #1f1f1f;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fdfaf6;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.7);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-cta {
  display: inline-block;
  background-color: #c49a6c;
  color: #1f1f1f;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(196, 154, 108, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.btn-cta:hover,
.btn-cta:focus {
  background-color: #a57e4a;
  transform: translateY(-3px);
  outline: none;
}

.envio-gratis,
.oferta-vigente {
  margin-top: 15px;
  font-weight: 600;
  font-style: italic;
  color: #e0d5be;
}

/* SECCIONES PRODUCTOS */
.productos {
  padding: 60px 0;
}

.productos h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1f1f1f;
  font-weight: 700;
}

.grid-productos {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.producto {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.producto:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.producto img {
  width: 100%;
  object-fit: cover;
  height: 220px;
  transition: transform 0.3s ease;
}

.producto:hover img {
  transform: scale(1.05);
}

.producto h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 15px 20px 10px;
  color: #333;
  font-weight: 700;
}

.producto p {
  flex-grow: 1;
  margin: 0 20px 15px;
  font-size: 0.9rem;
  color: #666;
}

.precio {
  font-weight: 700;
  color: #c49a6c;
  font-size: 1.1rem;
  margin: 0 20px 15px;
}

.producto button {
  background-color: #c49a6c;
  border: none;
  color: #1f1f1f;
  font-weight: 700;
  padding: 12px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
  user-select: none;
}

.producto button:hover,
.producto button:focus {
  background-color: #a57e4a;
  outline: none;
}

/* Exclusivo (últimos productos) */
.productos.exclusivo {
  background-color: #f4f1ea;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* SECCIÓN NOSOTROS */
.beneficios {
  background-color: #1f1f1f;
  color: #fdfaf6;
  padding: 60px 0;
  text-align: center;
}

.beneficios h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.beneficios ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.beneficios ul li {
  font-size: 1.1rem;
  margin: 15px 0;
  position: relative;
  padding-left: 35px;
  font-weight: 600;
}

.beneficios ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c49a6c;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

/* TESTIMONIOS */
.testimonios {
  background-color: #f9f6f0;
  padding: 60px 0;
  text-align: center;
}

.testimonios h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1f1f1f;
}

.testimonios blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 20px auto;
  max-width: 600px;
  color: #555;
  border-left: 5px solid #c49a6c;
  padding-left: 20px;
  line-height: 1.5;
}

/* ENVIOS */
.envios {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}

/* CONTACTO */
.contacto {
  background-color: #1f1f1f;
  color: #fdfaf6;
  padding: 60px 20px;
  text-align: center;
}

.contacto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contacto form {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto label {
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

.contacto input,
.contacto textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contacto input:focus,
.contacto textarea:focus {
  outline: 2px solid #c49a6c;
}

.contacto button {
  background-color: #c49a6c;
  color: #1f1f1f;
  padding: 15px;
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contacto button:hover,
.contacto button:focus {
  background-color: #a57e4a;
  outline: none;
}

/* BOTÓN WHATSAPP FIJO */
.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
  transition: background-color 0.3s ease;
  user-select: none;
  font-size: 1rem;
  z-index: 1100;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe57;
  outline: none;
}

/* FOOTER */
footer {
  background-color: #1f1f1f;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
}

footer a {
  color: #c49a6c;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  color: #a57e4a;
  outline: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .productos h2,
  .beneficios h2,
  .testimonios h2,
  .contacto h2 {
    font-size: 2rem;
  }
  
  .producto img 
  
.logo img {
  max-height: 60px;      /* Ajusta el alto máximo para que no sea ni muy pequeño ni gigante */
  width: auto;           /* Mantiene la proporción original */
  display: block;        /* Elimina espacio abajo si es imagen inline */
  object-fit: contain;   /* Asegura que la imagen no se deforme */
  filter: none;          /* Por si tienes filtros anteriores, los quita */
  transition: transform 0.3s ease; /* Suave al hacer hover (opcional) */
}

.logo img:hover,
.logo img:focus {
  transform: scale(1.05);  /* Un pequeño zoom al pasar el mouse, opcional */
  outline: none;
}

}


#carrito-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

#carrito h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #1f1f1f;
  text-align: center;
  letter-spacing: 1px;
}

#carrito ul {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

#carrito ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  transition: background 0.3s ease;
}

#carrito ul li:hover {
  background: rgba(196, 154, 108, 0.05);
  border-radius: 8px;
}

#carrito ul li button {
  background-color: #c49a6c;
  border: none;
  color: #1f1f1f;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#carrito ul li button:hover,
#carrito ul li button:focus {
  background-color: #a57e4a;
  transform: scale(1.05);
  outline: none;
}

#carrito p {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: right;
  color: #1f1f1f;
}

#carrito button#vaciar-carrito {
  background: linear-gradient(145deg, #c49a6c, #a57e4a);
  color: #fff;
  width: 100%;
  padding: 14px 0;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(196,154,108,0.4);
  transition: all 0.3s ease;
}

#carrito button#vaciar-carrito:hover,
#carrito button#vaciar-carrito:focus {
  transform: translateY(-3px);
  outline: none;
}

/* PAGO ESTÉTICO */
#resumen-carrito {
  list-style: none;
  margin-bottom: 25px;
  padding: 0 10px;
}

#resumen-carrito li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  transition: background 0.3s ease;
}

#resumen-carrito li:hover {
  background: rgba(196, 154, 108, 0.05);
  border-radius: 8px;
}

#total-pago {
  font-weight: 900;
  font-size: 1.4rem;
  color: #c49a6c;
  text-align: right;
  margin-top: 10px;
}

#form-pago {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#form-pago input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#form-pago input:focus {
  outline: 2px solid #c49a6c;
  box-shadow: 0 0 8px rgba(196,154,108,0.3);
}

#form-pago button {
  background: linear-gradient(145deg, #c49a6c, #a57e4a);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(196,154,108,0.4);
  transition: all 0.3s ease;
}

#form-pago button:hover,
#form-pago button:focus {
  transform: translateY(-3px);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .productos h2,
  .beneficios h2,
  .testimonios h2,
  .contacto h2 {
    font-size: 2rem;
  }

  .logo img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
  }

  .logo img:hover,
  .logo img:focus {
    transform: scale(1.05);
    outline: none;
  }
}
