*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --carbon: #2b2420;
  --carbon-light: #5a504a;
  --cream: #fdfaf5;
  --cream-2: #f6f0e6;
  --rojo: #c0392b;
  --rojo-dark: #7b1818;
  --verde: #2e7d32;
  --verde-dark: #1b5e20;
  --oro: #c9a227;
  --radio: 18px;
  --sombra: 0 8px 30px rgba(43,36,32,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--carbon);
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* ===================== HEADER ===================== */
.site-header { padding: 22px 0; }
.header-inner { display: flex; justify-content: center; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--carbon);
  letter-spacing: 0.3px;
}

/* ===================== HERO ===================== */
.hero {
  text-align: center;
  padding: 30px 20px 56px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.hero-pretitle {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oro);
  background: rgba(201,162,39,0.12);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--verde-dark); }
.hero-sub {
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--carbon-light);
  line-height: 1.65;
  font-weight: 500;
}

/* ===================== SECTIONS SHARED ===================== */
section { padding: 50px 20px; }
.section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-dark);
  margin-bottom: 10px;
}
.productos h2, .about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 34px;
}

/* ===================== PRODUCT CARDS ===================== */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.product-card {
  display: block;
  background: #fff;
  border-radius: var(--radio);
  padding: 28px 24px;
  box-shadow: var(--sombra);
  border-top: 5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(43,36,32,0.14);
}

.card-icon { font-size: 2.2rem; margin-bottom: 12px; }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--carbon);
}
.product-card p {
  font-size: 0.92rem;
  color: var(--carbon-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-2);
}
.card-price { font-size: 0.85rem; font-weight: 700; color: var(--carbon-light); }
.card-cta { font-size: 0.92rem; font-weight: 800; display: inline-flex; align-items: center; gap: 4px; }
.card-cta .arrow { transition: transform 0.2s ease; }
.product-card:hover .card-cta .arrow { transform: translateX(3px); }

.card-rojo { border-top-color: var(--rojo); }
.card-rojo .card-cta { color: var(--rojo); }

.card-verde { border-top-color: var(--verde); }
.card-verde .card-cta { color: var(--verde-dark); }

/* ===================== ABOUT ===================== */
.about { background: var(--cream-2); }
.about-subtitle { text-align: center; color: var(--verde-dark); font-weight: 700; font-size: 0.92rem; margin: -22px 0 26px; }

.about-box {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radio);
  padding: 28px 24px;
  box-shadow: var(--sombra);
  text-align: center;
}
.about-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--verde-dark), var(--verde));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.9rem;
  color: #fff;
  box-shadow: 0 8px 22px rgba(46,125,50,0.25);
}
.about-photo {
  width: 108px; height: 108px; border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid rgb(#e8f5e9);
  box-shadow: 0 8px 24px rgba(46,125,50,0.25);
}
.about-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--carbon-light);
  text-align: left;
  margin-bottom: 18px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-tags span {
  font-size: 0.76rem; font-weight: 800;
  background: var(--cream-2); color: var(--verde-dark);
  padding: 6px 12px; border-radius: 20px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--carbon);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 34px 20px;
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
footer .disclaimer { max-width: 460px; margin: 10px auto 0; opacity: 0.8; }
.footer-links { margin-top: 12px; }
.footer-links a { text-decoration: underline; color: rgba(255,255,255,0.6); }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 680px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
