/* ============================================================
   UBEMA — styles.css
   Paleta Premium: Bosque Profundo · Oro · Terracota · Marfil
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Verdes profundos del bosque ── */
  --forest:        #1B4332;
  --forest-mid:    #2D6A4F;
  --forest-light:  #40916C;
  --forest-soft:   #52B788;

  /* ── Oro & Ámbar cálido ── */
  --gold:          #D4A017;
  --gold-light:    #F5C842;
  --gold-pale:     #FEF3C7;
  --gold-dark:     #A07010;

  /* ── Terracota & Ladrillo ── */
  --terra:         #C0522E;
  --terra-dark:    #8B3A1E;
  --terra-light:   #E07050;
  --terra-pale:    #FBEAE4;

  /* ── Cremas & Marfiles ── */
  --ivory:         #FDFBF5;
  --ivory-dark:    #F5EFE0;
  --ivory-mid:     #EDE5D0;

  /* ── Salvia & Verde secundario ── */
  --sage:          #6B8F71;
  --sage-dark:     #4A6650;
  --sage-light:    #95BB99;
  --sage-pale:     #E8F2E9;

  /* ── Textos ── */
  --text:          #0D1F15;
  --text-soft:     #2E4A35;
  --text-muted:    #6A7C6D;

  /* ── Superficies & Bordes ── */
  --border:        #D6C9A8;
  --border-soft:   #E8DFC8;
  --surface:       #FFFFFF;
  --surface-warm:  #FDFAF3;

  /* ── Sombras ── */
  --shadow:        rgba(13, 31, 21, 0.12);
  --shadow-gold:   rgba(212, 160, 23, 0.28);
  --shadow-forest: rgba(27, 67, 50, 0.30);

  /* ── Gradientes ── */
  --grad-forest:   linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
  --grad-gold:     linear-gradient(135deg, #D4A017 0%, #F5C842 100%);
  --grad-warm:     linear-gradient(135deg, #FDFBF5 0%, #F5EFE0 100%);
  --grad-hero:     linear-gradient(135deg, #0D1F15 0%, #1B4332 40%, #2D6A4F 100%);

  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(212,160,23,0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(27,67,50,0.05) 0%, transparent 40%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   TIPOGRAFÍA GLOBAL
   ============================================================ */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  display: inline-block;
}

.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.light::before { background: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light      { color: var(--ivory); }
.section-title.light em   {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(253, 251, 245, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(214, 201, 168, 0.50);
  transition: box-shadow 0.35s, background 0.35s;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(13,31,21,0.12), 0 1px 0 rgba(212,160,23,0.15);
  background: rgba(253, 251, 245, 0.96);
}

.nav.modal-open {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav {
  transition: box-shadow 0.35s, background 0.35s, opacity 0.25s ease, transform 0.25s ease;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 0 0.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(13,31,21,0.18));
}

.nav-logo:hover { opacity: 0.88; }
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-forest);
  color: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--shadow-forest), inset 0 1px 0 rgba(245,200,66,0.25);
}

.logo-mark.sm {
  width: 32px;
  height: 32px;
  font-size: 1.15rem;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1.5px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: right 0.25s ease;
}

.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--grad-forest) !important;
  color: #fff !important;
  padding: 0.52rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px var(--shadow-forest);
  transition: box-shadow 0.2s, transform 0.15s !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 8px 28px var(--shadow-forest) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   HERO — CARRUSEL
   ============================================================ */
.hero {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ivory);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,160,23,0.07) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(27,67,50,0.06) 0%, transparent 45%);
  padding-top: 80px;
}

/* Wrapper que centra el carrusel al 90% del ancho */
.hero-carousel-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 2rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 100px rgba(13, 31, 21, 0.30),
    0 8px 32px rgba(13, 31, 21, 0.15),
    0 0 0 1px rgba(212,160,23,0.12);
  position: relative;
}

/* ---- Carrusel ---- */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 529px;
  max-height: 782px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1.0);
}

/* Overlay: gradiente multicapa con toque dorado */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(13, 31, 21, 0.82) 0%,
      rgba(27, 67, 50, 0.58) 38%,
      rgba(27, 67, 50, 0.12) 65%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(13, 31, 21, 0.45) 0%,
      transparent 35%
    );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5rem;
  gap: 0;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212,160,23,0.18);
  backdrop-filter: blur(8px);
  padding: 0.42rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(245,200,66,0.40);
  width: fit-content;
  box-shadow: 0 2px 12px rgba(212,160,23,0.20);
}

.slide-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-light);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--gold-light); }
  50%       { opacity: 0.6; transform: scale(0.7); box-shadow: 0 0 3px var(--gold); }
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.0;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.50);
  max-width: 580px;
  letter-spacing: -0.01em;
}

.slide-title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 2px 20px rgba(212,160,23,0.60);
}

.slide-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ---- Botones CTA dentro del slide ---- */
.slide-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-slide-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest);
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.2s;
  box-shadow: 0 6px 24px var(--shadow-gold);
}

.btn-slide-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--shadow-gold);
}

.btn-slide-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.50);
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-slide-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.80);
  transform: translateY(-2px);
}

/* ---- Botones flechas ---- */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(61,139,94,0.60);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

/* ---- Dots ---- */
.carousel-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 5rem;
  display: flex;
  gap: 0.55rem;
  z-index: 10;
}

.carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.3s;
}

.carousel-dot.active {
  background: #fff;
  width: 48px;
}

/* ---- Pills debajo del carrusel ---- */
.hero-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.4rem 2.5rem;
  background: linear-gradient(to right, var(--ivory) 0%, var(--ivory-dark) 50%, var(--ivory) 100%);
  justify-content: center;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
  position: relative;
}

.hero-pills::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.4), transparent);
}

.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-soft);
  box-shadow: 0 2px 10px var(--shadow);
  transition: border-color 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
  letter-spacing: 0.02em;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-gold);
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad-forest);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px var(--shadow-forest);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--shadow-forest);
}

.btn-primary:active { transform: scale(0.97); }
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-soft);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.btn-ghost:hover {
  border-color: var(--forest-light);
  color: var(--forest);
  background: rgba(64,145,108,0.06);
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.nosotros-text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-weight: 400;
}

.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat span {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nosotros-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nos-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 3px 20px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.nos-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-forest);
  border-radius: 3px 0 0 3px;
}

.nos-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px var(--shadow-forest);
  border-color: rgba(64,145,108,0.30);
}

.nos-card.offset  { margin-left: 1.5rem; }
.nos-card.offset2 { margin-left: 3rem; }

.nos-icon { font-size: 1.8rem; flex-shrink: 0; }

.nos-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.nos-card-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   MIEL
   ============================================================ */
.miel-section {
  background: var(--forest);
  background-image:
    radial-gradient(circle at 75% 25%, rgba(212,160,23,0.22) 0%, transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(45,107,71,0.60) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(27,67,50,0.40) 0%, transparent 70%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.miel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.50), transparent);
}

.miel-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.30), transparent);
}

.miel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.miel-p { color: rgba(253,251,245,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }

.miel-list {
  list-style: none;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.miel-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(253,251,245,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.miel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light);
  flex-shrink: 0;
}

/* Tarro ilustrado */
.miel-visual { display: flex; justify-content: center; }

.miel-card-big {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 270px;
  box-shadow: 0 0 0 1px rgba(212,160,23,0.10), 0 24px 60px rgba(0,0,0,0.25);
}

.miel-jar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.honey-jar {
  width: 130px;
  animation: sway 5s ease-in-out infinite;
}

.jar-lid {
  width: 90px;
  height: 22px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 5px 5px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 -2px 8px rgba(212,160,23,0.40);
}

.jar-body {
  width: 120px;
  height: 160px;
  background: linear-gradient(160deg, rgba(255,240,180,0.92), rgba(212,160,23,0.75));
  border-radius: 8px 8px 22px 22px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: inset -8px 0 24px rgba(0,0,0,0.12), 0 12px 40px rgba(0,0,0,0.20), 0 0 0 1px rgba(212,160,23,0.30);
}

.honey-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(180,110,0,0.80), rgba(212,160,23,0.55));
  border-radius: 0 0 22px 22px;
}

.honey-shine {
  position: absolute;
  top: 12px; left: 14px;
  width: 18px; height: 55px;
  background: rgba(255,255,255,0.30);
  border-radius: 50px;
  transform: rotate(-10deg);
}

.miel-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px rgba(212,160,23,0.40);
}

.miel-card-sub {
  font-size: 0.72rem;
  color: rgba(250,246,238,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

@keyframes sway {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-6px); }
}

/* ============================================================
   SECCIÓN MIEL
   ============================================================ */
.miel-section {
  background: linear-gradient(135deg, #FDFBF5 0%, #FEF3C7 60%, #FFF8E7 100%);
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.miel-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.miel-img-col { display: flex; justify-content: center; }

.miel-foto {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(212,160,23,0.20), 0 4px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

.miel-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.miel-atributos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.miel-atributos li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-soft);
}

.btn-miel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: var(--forest);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.btn-miel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow-gold);
}

@media (max-width: 768px) {
  .miel-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .miel-atributos li { justify-content: center; }
}

/* ============================================================
   CATÁLOGO GRIDS
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.52rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px var(--shadow);
}

.filter-btn:hover {
  border-color: var(--forest-light);
  color: var(--forest);
  background: var(--sage-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--shadow-forest);
}

.filter-btn.active {
  background: var(--grad-forest);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--shadow-forest);
}

/* Sección ajíes con fondo diferente */
.ajies-bg {
  background: var(--ivory-dark);
  background-image:
    radial-gradient(circle at 90% 10%, rgba(192,82,46,0.07) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(27,67,50,0.06) 0%, transparent 40%);
}

/* Sección hortalizas */
.hortalizas-bg {
  background: linear-gradient(145deg, var(--ivory) 0%, var(--ivory-mid) 100%);
  background-image:
    radial-gradient(circle at 10% 90%, rgba(64,145,108,0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(212,160,23,0.06) 0%, transparent 40%);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Tarjeta producto */
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, opacity 0.25s;
  box-shadow: 0 3px 20px var(--shadow);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s;
}

.product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 60px var(--shadow-forest);
  border-color: rgba(64,145,108,0.22);
}

.product-card:hover::after { opacity: 1; }

.product-card.hidden {
  display: none;
}

.card-emoji-area {
  background: linear-gradient(145deg, var(--ivory-dark) 0%, var(--ivory-mid) 100%);
  padding: 2.4rem;
  text-align: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.card-img-area {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: linear-gradient(145deg, var(--ivory-dark) 0%, var(--ivory-mid) 100%);
}

/* Botón WhatsApp flotante en tarjeta */
.card-wa-btn {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.55);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  z-index: 5;
  flex-shrink: 0;
}

.card-wa-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.70);
}

.card-wa-btn svg {
  width: 21px;
  height: 21px;
}

.card-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .card-product-img {
  transform: scale(1.05);
}

.card-emoji-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.50) 0%, transparent 65%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 50%);
}

.card-body { padding: 1.3rem 1.4rem 1.5rem; }

.card-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.3rem;
  display: block;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.67rem;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tag-flavor { background: var(--sage-pale); color: var(--sage-dark); border: 1px solid rgba(107,143,113,0.20); }
.tag-heat   { background: var(--terra-pale); color: var(--terra-dark); border: 1px solid rgba(192,82,46,0.20); }
.tag-type   { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid rgba(212,160,23,0.22); }

/* Badge de categoría / sabor / temporada sobre imagen */
.category-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(27, 67, 50, 0.15);
  color: var(--forest);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(27,67,50,0.22);
}

.flavor-badge {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-dark);
  border-color: rgba(212,160,23,0.28);
}

.season-badge {
  background: rgba(107, 143, 113, 0.16);
  color: var(--sage-dark);
  border-color: rgba(107,143,113,0.28);
  font-size: 0.58rem;
}

/* ============================================================
   HEAT LEGEND
   ============================================================ */
.heat-legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.heat-item { display: flex; align-items: center; gap: 0.4rem; }

.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot.green  { background: #28a745; }
.dot.yellow { background: #ffc107; }
.dot.orange { background: #fd7e14; }
.dot.red    { background: #dc3545; }

/* ============================================================
   HORTALIZAS
   ============================================================ */
.hortalizas-section {
  background: var(--ivory-mid);
}

.hortalizas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hortalizas-text p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hortalizas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.h-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.18s;
  cursor: default;
}

.h-chip:hover {
  border-color: var(--terra-light);
  color: var(--terra);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow);
}

/* ============================================================
   NOSOTROS — FOTO GRID
   ============================================================ */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nosotros-text p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Foto grid de nosotros */
.nosotros-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nosotros-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.nosotros-photo-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 31, 21, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.nosotros-photo-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(13, 31, 21, 0.22);
}

.nosotros-photo-item img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.nosotros-photo-item:hover img {
  transform: scale(1.06);
}

.nosotros-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,31,21,0.80) 0%, transparent 100%);
  color: var(--ivory);
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1.2rem 0.9rem 0.65rem;
  text-align: center;
}

@media (max-width: 900px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nosotros-photo-item img {
    height: 160px;
  }
}

@media (max-width: 520px) {
  .nosotros-photo-pair {
    grid-template-columns: 1fr;
  }
  .nosotros-photo-item img {
    height: 200px;
  }
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contacto-text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 0.8rem 1.2rem;
  background: var(--ivory-dark);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--shadow);
}

/* ── Contacto Social Cards ── */
.contacto-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.social-contact-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.social-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}

.social-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  transition: opacity 0.22s;
  pointer-events: none;
}

.social-contact-card:hover {
  transform: translateY(-4px);
}

/* WhatsApp card */
.whatsapp-card {
  background: linear-gradient(135deg, #e8fdf0 0%, #f0fdf4 100%);
  border-color: rgba(37,211,102,0.30);
  box-shadow: 0 4px 24px rgba(37,211,102,0.12);
}
.whatsapp-card::before { background: #25D366; }
.whatsapp-card:hover {
  border-color: rgba(37,211,102,0.55);
  box-shadow: 0 12px 40px rgba(37,211,102,0.22);
}

/* Instagram card */
.instagram-card {
  background: linear-gradient(135deg, #fdf0f8 0%, #fdf4ff 100%);
  border-color: rgba(214,36,159,0.22);
  box-shadow: 0 4px 24px rgba(214,36,159,0.10);
}
.instagram-card::before { background: #d6249f; }
.instagram-card:hover {
  border-color: rgba(214,36,159,0.45);
  box-shadow: 0 12px 40px rgba(214,36,159,0.18);
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}

.social-contact-card:hover .social-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.social-card-icon.ig-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 16px rgba(214,36,159,0.35);
}

.social-card-icon svg {
  width: 26px;
  height: 26px;
}

.social-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.social-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.social-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.social-card-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.social-contact-card:hover .social-card-arrow {
  transform: translateX(4px);
  color: var(--forest);
}

.social-contact-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 21, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
  padding: 1rem;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(13, 31, 21, 0.40), 0 0 0 1px rgba(212,160,23,0.12);
  border: 1px solid var(--border-soft);
  animation: modalPop 0.28s ease both;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--ivory-dark);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s;
}

.modal-close:hover { background: var(--border); }

.modal-emoji-banner {
  background: linear-gradient(145deg, var(--ivory-dark) 0%, var(--ivory-mid) 100%);
  padding: 3rem;
  text-align: center;
  font-size: 5rem;
  position: relative;
}

.modal-emoji-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.35), transparent);
}

.modal-img-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.modal-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.modal-img-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.35), transparent);
}

.modal-content-inner { padding: 1.8rem 2rem 2rem; }

.modal-category {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.modal-desc {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.modal-chip {
  padding: 0.42rem 1.05rem;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--ivory-dark);
  color: var(--text-soft);
  border: 1px solid var(--border);
}

.modal-chip.heat { background: var(--terra-pale); color: var(--terra-dark); }

.modal-uses {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 1.1rem 1.2rem;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--forest-light);
  line-height: 1.65;
  font-weight: 400;
}

.modal-uses strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

/* Botón consulta WhatsApp en modal */
.btn-modal-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-modal-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

.btn-modal-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.50);
  background: linear-gradient(135deg, #1ebe5d 0%, #17a34a 100%);
}

.btn-modal-wa:active {
  transform: translateY(0);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(27,67,50,0.60) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 40%);
  color: var(--ivory);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(253,251,245,0.50);
  line-height: 1.7;
  font-weight: 400;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.footer-logo-img:hover { opacity: 0.85; }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a {
  font-size: 0.87rem;
  color: rgba(253,251,245,0.50);
  transition: color 0.2s;
  font-weight: 400;
}

.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid rgba(253,251,245,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(253,251,245,0.30);
  font-weight: 400;
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 950;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s, box-shadow 0.22s;
  animation: waPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--text);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ============================================================
   INSTAGRAM FLOTANTE
   ============================================================ */
.instagram-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 950;
  width: 58px;
  height: 58px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(214, 36, 159, 0.45);
  transition: transform 0.22s, box-shadow 0.22s;
  animation: igPulse 2.8s ease-in-out infinite;
}

.instagram-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(214, 36, 159, 0.60);
  animation: none;
}

.instagram-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.instagram-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.instagram-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--text);
}

.instagram-float:hover .instagram-tooltip { opacity: 1; }

@keyframes igPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(214,36,159,0.45); }
  50%       { box-shadow: 0 6px 28px rgba(214,36,159,0.45), 0 0 0 10px rgba(214,36,159,0.12); }
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nosotros-grid,
  .miel-inner,
  .hortalizas-wrap,
  .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .nos-card.offset,
  .nos-card.offset2 { margin-left: 0; }

  .miel-visual { display: none; }

  /* Hero responsive */
  .hero-carousel-wrapper {
    width: 95%;
    margin-top: 1.5rem;
    border-radius: 14px;
  }

  .slide-overlay {
    padding: 2rem 2.5rem;
  }

  .carousel-dots { left: 2.5rem; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 800;
    box-shadow: 0 8px 24px var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 1rem; }
  .nav-cta { border-radius: 0 !important; }

  .hamburger { display: flex; }

  .footer-top { grid-template-columns: 1fr; }

  .catalog-grid { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: 3rem; }

  /* Hero móvil */
  .hero-carousel-wrapper {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
  }

  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }

  .slide-overlay {
    padding: 1.5rem 1.5rem 2rem;
    justify-content: flex-end;
  }

  .slide-title { font-size: clamp(2rem, 9vw, 3rem); }

  .slide-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-slide-primary,
  .btn-slide-ghost {
    text-align: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.82rem;
  }

  .carousel-dots { left: 1.5rem; bottom: 1.2rem; }
}

@media (max-width: 420px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NOSOTROS — CARRUSEL FULL WIDTH
   ============================================================ */
.nosotros-carousel-wrapper {
  width: 90%;
  position: relative;
  overflow: hidden;
  margin: 3rem auto 0;
  border-radius: var(--radius-lg);
  background: var(--text);
  max-height: 560px;
}

.nosotros-carousel {
  position: relative;
  width: 100%;
  height: 560px;
}

.nos-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.nos-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.nos-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nos-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 31, 21, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Botones prev/next */
.nos-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.nos-btn:hover {
  background: rgba(212,160,23,0.75);
  transform: translateY(-50%) scale(1.1);
}
.nos-btn svg { width: 22px; height: 22px; }
.nos-prev { left: 1.25rem; }
.nos-next { right: 1.25rem; }

/* Dots */
.nos-dots {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}

.nos-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.nos-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ============================================================
   NOSOTROS — FERIAS SCHEDULE
   ============================================================ */
.ferias-schedule {
  background: var(--ivory-dark);
  padding: 3.5rem 2rem;
  text-align: center;
}

.ferias-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.ferias-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.ferias-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.feria-card {
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 260px;
  flex: 1;
  max-width: 380px;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  text-align: left;
}

.feria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-forest);
  border-color: var(--forest-soft);
}

.feria-icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feria-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.feria-nombre {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.feria-dia {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.1;
}

.feria-lugar {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

.feria-hora {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
  background: var(--sage-pale);
  border-radius: 999px;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  align-self: flex-start;
}

/* Responsive nosotros carousel */
@media (max-width: 768px) {
  .nosotros-carousel,
  .nosotros-carousel-wrapper { height: 320px; max-height: 320px; }

  .ferias-cards { flex-direction: column; align-items: center; }
  .feria-card { max-width: 100%; width: 100%; }
}

@media (max-width: 480px) {
  .nosotros-carousel,
  .nosotros-carousel-wrapper { height: 240px; max-height: 240px; }

  .ferias-schedule { padding: 2.5rem 1rem; }
  .feria-card { padding: 1.25rem 1.25rem; }
}

