
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f2eee8; /* fondo elegante, no blanco puro */
  color: #2b2b2b;
}

/* HEADER LOGO CENTRAL + ANIMACIÓN */
header {
  padding: 50px 20px 10px;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}

.logo-container .logo {
  max-width: 260px;      /* tamaño grande */
  width: 60vw;           /* responsive */
  height: auto;
  display: block;

  /* animación sutil de entrada */
  animation: logoFadeIn 1.6s ease-in-out forwards;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* HERO */
.hero {
  text-align: center;
  padding: 30px 20px 70px;
  background: linear-gradient(180deg, #f2eee8 0%, #e8e2d9 100%);
}

.brand {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a6a55;
  margin-bottom: 10px;
}

h1 {
  font-size: 56px;
  margin: 10px 0 15px;
  font-weight: 300;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTONES */
.cta {
  display: inline-block;
  padding: 16px 36px;
  background-color: #2b2b2b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 10px;
}

.cta:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* PRODUCTOS */
.products {
  padding: 70px 20px;
  background-color: #ebe7df;
  text-align: center;
}

.products h2 {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 45px;
  letter-spacing: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.product-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}

.product-title {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  padding: 45px 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media (max-width: 600px) {
  h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 18px;
  }

  .logo-container {
    width: 180px;
    height: 180px;
  }

  .logo-container .logo {
    max-width: 180px;
  }
}