/* ════════════════════════════════════════════════════════════
   home.css — Estilos del home (index.php) y catálogo (flores.php)
   Diseño moderno, conversión-oriented, mobile-first.
   ════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Mulish:wght@400;500;600;700;800&display=swap');

/* ──────────────────────────────────────────────────────────────
   NAVBAR (compartido con blog/post via admin/inc/nav.php)
   ────────────────────────────────────────────────────────────── */
.pnav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,250,245,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176,86,58,.12);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  font-family: 'Mulish', system-ui, sans-serif;
}
.pnav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 64px;
}
.pnav-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.12rem; color: #B0563A;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}

/* Hamburguesa — oculta en desktop, visible en mobile (CSS puro) */
.pnav-toggle { display: none; }
.pnav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; border-radius: 10px;
  cursor: pointer; flex-shrink: 0; transition: background .18s;
}
.pnav-burger span {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: #B0563A; transition: transform .25s ease, opacity .2s ease;
}
.pnav-burger:hover { background: #EFE7D8; }

.pnav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: wrap; justify-content: flex-end;
}
.pnav-link {
  padding: 8px 13px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: #374151; text-decoration: none; transition: all .18s; white-space: nowrap;
}
.pnav-link:hover, .pnav-link.on { background: #EFE7D8; color: #B0563A; }

.pnav-drop { position: relative; }
.pnav-drop-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 13px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: #374151; cursor: pointer; text-decoration: none; transition: all .18s;
  background: none; border: none; font-family: inherit; white-space: nowrap;
}
.pnav-drop-btn:hover { background: #EFE7D8; color: #B0563A; }
.pnav-drop-btn svg { transition: transform .2s; }
.pnav-drop:hover .pnav-drop-btn svg,
.pnav-drop:focus-within .pnav-drop-btn svg { transform: rotate(180deg); }
.pnav-drop-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,.16);
  border: 1px solid rgba(176,86,58,.12);
  padding: 18px; min-width: 660px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s; z-index: 300;
}
.pnav-drop:hover .pnav-drop-menu,
.pnav-drop:focus-within .pnav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pnav-drop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  max-height: 380px; overflow-y: auto;
}
.pnav-flor-link {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 11px; border-radius: 8px; font-size: .82rem; font-weight: 500;
  color: #374151; text-decoration: none; transition: background .15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pnav-flor-link:hover { background: #EFE7D8; color: #B0563A; }
.pnav-drop-footer {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid #E7DECE;
  text-align: center;
}
.pnav-drop-footer a {
  font-size: .85rem; color: #B0563A; font-weight: 600; text-decoration: none;
}
.pnav-drop-footer a:hover { text-decoration: underline; }

/* ── Navbar móvil: panel desplegable con hamburguesa ── */
@media (max-width: 960px) {
  .pnav-burger { display: flex; }
  .pnav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px; flex-wrap: nowrap;
    background: #FBF6EE; border-bottom: 1px solid rgba(176,86,58,.15);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    padding: 12px 16px 20px; max-height: calc(100vh - 64px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .pnav-toggle:checked ~ .pnav-links {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
  }
  .pnav-link, .pnav-drop-btn { width: 100%; font-size: .98rem; padding: 12px 14px; }
  .pnav-drop { width: 100%; }
  .pnav-drop-btn { justify-content: space-between; }
  .pnav-drop-menu {
    position: static; transform: none; opacity: 1; right: auto;
    min-width: 0; width: 100%; box-shadow: none; border: none;
    border-radius: 0; padding: 0; visibility: hidden;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .pnav-drop:focus-within .pnav-drop-menu {
    visibility: visible; max-height: 65vh; overflow-y: auto; padding: 4px 0 8px;
  }
  .pnav-drop-grid { grid-template-columns: repeat(2, 1fr); max-height: none; }
  /* hamburguesa → X */
  .pnav-toggle:checked ~ .pnav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .pnav-toggle:checked ~ .pnav-burger span:nth-child(2) { opacity: 0; }
  .pnav-toggle:checked ~ .pnav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 420px) {
  .pnav-inner { padding: 0 16px; }
  .pnav-logo { font-size: 1.02rem; }
}


:root {
  --hbach-verde: #B0563A;
  --hbach-verde-claro: #8AA992;
  --hbach-verde-bg: #EBF1EC;
  --hbach-crema: #FBF6EE;
  --hbach-crema-medio: #F1E7D7;
  --hbach-tx: #3A322A;
  --hbach-tx-suave: #5C5346;
  --hbach-tx-muy-suave: #8A8275;
  --hbach-border: #E7DECE;
}

* { box-sizing: border-box; }
body { font-family: 'Mulish', system-ui, -apple-system, sans-serif; line-height: 1.6; color: var(--hbach-tx); background: #fff; margin: 0; }
img { max-width: 100%; display: block; height: auto; }

/* ════════════ HERO ════════════ */
.home-hero {
  position: relative;
  padding: 80px 24px 90px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hbach-crema) 0%, #fff 70%);
}
.home-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(138,169,146,.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(255,180,89,.10) 0%, transparent 38%),
    radial-gradient(circle at 50% 80%, rgba(177,156,217,.10) 0%, transparent 40%);
  z-index: 0;
}
.home-hero-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.home-hero-tag {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hbach-border);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--hbach-verde);
  font-weight: 600;
  margin-bottom: 24px;
}
.home-hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  color: #33291E;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
}
.home-hero-emph { color: var(--hbach-verde); position: relative; }
.home-hero-emph::after {
  content: '';
  position: absolute; bottom: 6px; left: 0; right: 0; height: 10px;
  background: linear-gradient(90deg, rgba(138,169,146,.35) 0%, rgba(255,180,89,.3) 100%);
  z-index: -1;
  border-radius: 4px;
}
.home-hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--hbach-tx-suave);
  max-width: 680px;
  margin: 0 auto 36px;
}
.home-hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px;
}

.home-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  transition: all .18s;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.home-btn-p { background: var(--hbach-verde); color: #fff; }
.home-btn-p:hover { background: #7E3A24; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(176,86,58,.28); }
.home-btn-s { background: #fff; color: var(--hbach-verde); border-color: var(--hbach-verde); }
.home-btn-s:hover { background: var(--hbach-verde); color: #fff; }
.home-btn-w { background: #fff; color: var(--hbach-verde); }
.home-btn-w:hover { background: var(--hbach-crema); transform: translateY(-2px); }
.home-btn-out { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.home-btn-out:hover { background: rgba(255,255,255,.15); }

.home-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 760px; margin: 0 auto;
  padding-top: 36px; border-top: 1px solid var(--hbach-border);
}
.home-stat .n { font-family: 'Fraunces', serif; font-size: 2.3rem; font-weight: 700; color: var(--hbach-verde); line-height: 1; }
.home-stat .l { font-size: .82rem; color: var(--hbach-tx-muy-suave); margin-top: 6px; font-weight: 500; }

/* ════════════ SECCIONES ════════════ */
.home-sec { padding: 80px 24px; }
.home-sec-alt { background: var(--hbach-crema); }
.home-w { max-width: 1200px; margin: 0 auto; }
.home-section-head { text-align: center; margin-bottom: 50px; max-width: 740px; margin-left: auto; margin-right: auto; }
.home-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hbach-verde);
  font-weight: 700;
  margin-bottom: 14px;
}
.home-section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: #33291E;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.home-lead { font-size: 1.06rem; color: var(--hbach-tx-suave); line-height: 1.7; margin: 0; }

/* ════════════ 3 COL CARDS ════════════ */
.home-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.home-card-mini {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid var(--hbach-border);
  text-align: center;
  transition: all .2s;
}
.home-card-mini:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.06); border-color: var(--hbach-verde-claro); }
.home-card-mini .ico { font-size: 2.4rem; margin-bottom: 14px; }
.home-card-mini h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; margin: 0 0 10px; color: #33291E; }
.home-card-mini p { font-size: .96rem; color: var(--hbach-tx-suave); margin: 0; }

/* ════════════ 7 GRUPOS ════════════ */
.home-grupos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-grupos > :nth-child(5),
.home-grupos > :nth-child(6),
.home-grupos > :nth-child(7) { grid-column: span 1; }
.home-grupo {
  display: flex; flex-direction: column;
  padding: 26px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--hbach-border);
  border-top: 4px solid var(--gc, #B0563A);
  text-decoration: none;
  color: var(--hbach-tx);
  transition: all .18s;
}
.home-grupo:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.07); }
.home-grupo .emj { font-size: 2rem; margin-bottom: 10px; }
.home-grupo h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin: 0 0 6px; color: #33291E; }
.home-grupo p { font-size: .88rem; color: var(--hbach-tx-muy-suave); margin: 0 0 14px; flex: 1; }
.home-grupo .cnt { font-size: .82rem; font-weight: 700; color: var(--gc, #B0563A); }

/* ════════════ GRID DE FLORES (con imagen webp) ════════════ */
.home-flores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-flor-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--hbach-border);
  text-decoration: none;
  color: var(--hbach-tx);
  transition: all .25s;
  overflow: hidden;
}
.home-flor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
  border-color: var(--fc);
}

.home-flor-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--fcl) 0%, #fff 100%);
  overflow: hidden;
}
.home-flor-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.home-flor-card:hover .home-flor-img-wrap img { transform: scale(1.08); }
.home-flor-emj-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.15));
}
.home-flor-num-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,.95);
  color: var(--fc);
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.home-flor-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.home-flor-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  margin: 0 0 4px;
  color: #33291E;
  display: flex; align-items: center; gap: 8px;
}
.home-flor-emj-sm { font-size: 1.1rem; }
.home-flor-en { font-size: .9rem; color: var(--fc); margin-bottom: 12px; font-style: italic; font-weight: 500; }
.home-flor-desc { font-size: .94rem; color: var(--hbach-tx-suave); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.home-flor-cta {
  font-size: .88rem; font-weight: 700; color: var(--fc);
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.home-flor-card:hover .home-flor-cta { gap: 10px; }

/* ════════════ ARTÍCULOS ════════════ */
.home-arts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-art-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--hbach-border);
  overflow: hidden;
  text-decoration: none;
  color: var(--hbach-tx);
  transition: all .2s;
}
.home-art-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.home-art-img { height: 180px; background-size: cover; background-position: center; background-color: var(--hbach-crema-medio); }
.home-art-body { padding: 22px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.home-art-cat { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: .72rem; font-weight: 700; margin-bottom: 10px; align-self: flex-start; }
.home-art-body h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin: 0 0 10px; color: #33291E; line-height: 1.35; }
.home-art-body p { font-size: .9rem; color: var(--hbach-tx-suave); line-height: 1.55; margin: 0 0 14px; flex: 1; }
.home-art-foot { display: flex; justify-content: space-between; font-size: .8rem; color: var(--hbach-tx-muy-suave); padding-top: 12px; border-top: 1px solid var(--hbach-border); }
.home-art-foot span:last-child { color: var(--hbach-verde); font-weight: 600; }

/* ════════════ TESTIMONIOS ════════════ */
.home-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.home-testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--hbach-border);
  position: relative;
}
.home-testi-card::before {
  content: '“';
  position: absolute;
  top: 8px; left: 16px;
  font-size: 4rem;
  color: var(--hbach-verde-claro);
  opacity: .25;
  font-family: Georgia, serif;
  line-height: 1;
}
.home-testi-stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.home-testi-txt { font-size: 1rem; line-height: 1.7; color: var(--hbach-tx); margin: 0 0 20px; font-style: italic; position: relative; }
.home-testi-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--hbach-border); }
.home-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hbach-verde) 0%, var(--hbach-verde-claro) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.15rem;
}
.home-testi-name { font-weight: 700; color: #33291E; font-size: .95rem; }
.home-testi-meta { font-size: .82rem; color: var(--hbach-tx-muy-suave); }
.home-testi-disclaimer { text-align: center; margin-top: 30px; padding: 16px 20px; background: #FBF6EE; border-radius: 10px; font-size: .85rem; color: var(--hbach-tx-muy-suave); border-left: 3px solid var(--hbach-verde-claro); }

/* ════════════ CONSEJO ════════════ */
.home-sec-consejo { padding: 60px 24px; background: linear-gradient(135deg, var(--hbach-verde-bg) 0%, #fff 100%); }
.home-consejo {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--hbach-border);
}
.home-consejo-tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--hbach-verde); font-weight: 700; margin-bottom: 14px; }
.home-consejo-flor { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #33291E; margin-bottom: 14px; }
.home-consejo-txt { font-style: italic; font-size: 1.08rem; color: var(--hbach-tx-suave); line-height: 1.7; margin: 0; }

/* ════════════ CTA FINAL ════════════ */
.home-cta-final {
  background: linear-gradient(135deg, var(--hbach-verde) 0%, #6E3320 100%);
  padding: 90px 24px;
  text-align: center;
}
.home-cta-inner { color: #fff; max-width: 680px; margin: 0 auto; }
.home-cta-inner h2 { font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; margin: 0 0 16px; }
.home-cta-inner p { color: rgba(255,255,255,.85); font-size: 1.08rem; line-height: 1.7; margin: 0 0 36px; }
.home-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════ FOOTER ════════════ */
.home-foot { background: #33291E; color: #94A3B8; padding: 50px 24px 28px; }
.home-foot-disclaimer { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2); padding: 14px 18px; border-radius: 10px; color: #E7DECE; font-size: .88rem; margin-bottom: 40px; line-height: 1.55; }
.home-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.home-foot-logo { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.home-foot-grid p { font-size: .92rem; line-height: 1.6; }
.home-foot-grid h4 { color: #fff; font-size: .92rem; margin: 0 0 14px; }
.home-foot-grid ul { list-style: none; padding: 0; margin: 0; }
.home-foot-grid li { margin-bottom: 8px; }
.home-foot-grid a { color: #94A3B8; text-decoration: none; font-size: .88rem; transition: color .15s; }
.home-foot-grid a:hover { color: #fff; }
.home-foot-bottom { padding-top: 22px; border-top: 1px solid #3A322A; display: flex; justify-content: space-between; font-size: .82rem; flex-wrap: wrap; gap: 10px; }

/* ════════════ FLORES.PHP CATÁLOGO ════════════ */
.cat-hero { background: linear-gradient(180deg, var(--hbach-crema) 0%, #fff 100%); padding: 60px 24px 40px; text-align: center; }
.cat-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 4.5vw, 3rem); color: #33291E; margin: 0 0 14px; letter-spacing: -.02em; }
.cat-hero p { font-size: 1.08rem; color: var(--hbach-tx-suave); max-width: 620px; margin: 0 auto 26px; line-height: 1.65; }
.cat-search { max-width: 480px; margin: 0 auto; display: flex; gap: 10px; align-items: center; background: #fff; padding: 6px 6px 6px 22px; border-radius: 999px; border: 1px solid var(--hbach-border); }
.cat-search input { flex: 1; border: 0; outline: none; font-size: .96rem; background: transparent; }
.cat-search button { background: var(--hbach-verde); color: #fff; border: 0; padding: 11px 22px; border-radius: 999px; cursor: pointer; font-weight: 600; }

.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 28px 24px 0; max-width: 1200px; margin: 0 auto; }
.cat-filter-chip { padding: 9px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--hbach-border); font-size: .88rem; font-weight: 500; color: var(--hbach-tx); text-decoration: none; transition: all .15s; }
.cat-filter-chip:hover { border-color: var(--hbach-verde); }
.cat-filter-chip.on { background: var(--hbach-verde); color: #fff; border-color: var(--hbach-verde); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; max-width: 1200px; margin: 40px auto 60px; padding: 0 24px; }
.cat-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px;
  border: 1px solid var(--hbach-border);
  text-decoration: none; color: var(--hbach-tx);
  transition: all .22s;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
  border-color: var(--fc);
}
.cat-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, var(--fcl) 0%, #fff 100%);
  overflow: hidden;
}
.cat-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cat-card:hover .cat-card-img-wrap img { transform: scale(1.06); }
.cat-card-emj-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.15));
}
.cat-card-num-badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,.95);
  color: var(--fc);
  border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.cat-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  margin: 0 0 2px; color: #33291E; line-height: 1.2;
  display: flex; align-items: baseline; gap: 6px;
}
.cat-card-emj-inline { font-size: .95rem; }
.cat-card-en { font-size: .82rem; color: var(--fc); font-style: italic; margin-bottom: 12px; font-weight: 500; }
.cat-card-est {
  font-size: .85rem; color: var(--hbach-tx-suave); line-height: 1.5;
  margin: 0 0 14px; flex: 1;
  padding: 10px 12px; background: var(--fcl); border-radius: 8px;
}
.cat-card-cta {
  font-size: .84rem; font-weight: 700; color: var(--fc);
  display: flex; justify-content: space-between; align-items: center;
}
.cat-card-cta::after { content: '→'; transition: transform .18s; }
.cat-card:hover .cat-card-cta::after { transform: translateX(4px); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 980px) {
  .home-3col { grid-template-columns: 1fr; }
  .home-grupos { grid-template-columns: repeat(2, 1fr); }
  .home-flores-grid { grid-template-columns: repeat(2, 1fr); }
  .home-arts-grid { grid-template-columns: 1fr; }
  .home-testi-grid { grid-template-columns: 1fr; }
  .home-foot-grid { grid-template-columns: 1fr 1fr; }
  .home-hero-stats { grid-template-columns: repeat(2, 1fr); }
}
/* ════════════════════════════════════════════════════════════
   PAGE HERO (nosotros, faq, contacto, etc.) — con fondo webp
   ════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 90px 24px 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--hbach-border);
}
.page-hero-in { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--hbach-verde);
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid var(--hbach-border);
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #33291E;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--hbach-tx-suave);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 580px;
}

/* ════════════════════════════════════════════════════════════
   NOSOTROS — page content
   ════════════════════════════════════════════════════════════ */
.page-content { color: var(--hbach-tx); }
.page-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  color: #33291E;
  margin: 40px 0 16px;
  letter-spacing: -.015em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 1.04rem; line-height: 1.75; color: var(--hbach-tx-suave); margin-bottom: 16px; }
.page-content strong { color: #33291E; }
.page-content a { color: var(--hbach-verde); font-weight: 600; }
.page-content a:hover { text-decoration: underline; }

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 50px 0;
  padding: 32px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--hbach-border);
  text-align: center;
}
.nosotros-stats > div { padding: 0 8px; }
.nosotros-stats .n {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--hbach-verde);
  font-weight: 700;
  line-height: 1;
}
.nosotros-stats .l {
  display: block;
  font-size: .82rem;
  color: var(--hbach-tx-muy-suave);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.35;
}

.valores-block {
  margin: 50px 0;
  padding: 50px 36px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.valores-block h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: #fff;
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: -.015em;
}
.valores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.valor {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 24px 22px;
  border-radius: 14px;
}
.valor-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  margin-bottom: 8px;
}
.valor h3 { font-family: 'Fraunces', serif; font-size: 1.18rem; color: #fff; margin: 0 0 8px; }
.valor p { font-size: .94rem; color: rgba(255,255,255,.88); line-height: 1.55; margin: 0; }

.aviso-legal {
  background: #FFF8E1;
  border-left: 4px solid #F59E0B;
  padding: 18px 22px;
  border-radius: 10px;
  margin: 16px 0;
}
.aviso-legal p { font-size: .92rem; color: #78350F; margin-bottom: 10px; line-height: 1.6; }
.aviso-legal p:last-child { margin-bottom: 0; }

.cta-explorar {
  margin: 50px 0 0;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--hbach-verde-bg) 0%, #fff 100%);
  border-radius: 18px;
  border: 1px solid var(--hbach-border);
  text-align: center;
}
.cta-explorar h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #33291E; margin: 0 0 8px; }
.cta-explorar p { color: var(--hbach-tx-suave); margin: 0 0 22px; }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-nav {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hbach-border);
}
.faq-nav-chip {
  padding: 8px 16px;
  background: var(--hbach-crema);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--hbach-tx-suave);
  text-decoration: none;
  transition: all .15s;
}
.faq-nav-chip:hover { background: var(--hbach-verde); color: #fff; }

.faq-grupo { margin-bottom: 36px; scroll-margin-top: 80px; }
.faq-grupo-h {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  color: #33291E;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hbach-verde-claro);
}
.faq-item {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--hbach-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .15s;
}
.faq-item[open] {
  border-color: var(--hbach-verde-claro);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: #33291E;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--hbach-verde);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-r {
  padding: 0 22px 20px;
  color: var(--hbach-tx-suave);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-r p { margin: 0; }
.faq-r a { color: var(--hbach-verde); font-weight: 600; }

.faq-cta {
  margin-top: 60px;
  padding: 50px 36px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.faq-cta h2 { font-family: 'Fraunces', serif; font-size: 1.9rem; color: #fff; margin: 0 0 12px; }
.faq-cta p { color: rgba(255,255,255,.88); font-size: 1.02rem; max-width: 500px; margin: 0 auto 26px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   BENEFICIOS
   ════════════════════════════════════════════════════════════ */
.beneficios-bloque {
  margin: 40px 0;
  padding: 36px 32px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--hbach-border);
  border-left: 5px solid var(--bc, #B0563A);
}
.beneficios-bloque-head {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hbach-border);
}
.beneficios-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hbach-crema);
  border-radius: 14px;
}
.beneficios-bloque-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  color: #33291E;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.beneficios-bloque-head p {
  font-size: 1rem;
  color: var(--hbach-tx-suave);
  margin: 0;
  line-height: 1.6;
}
.beneficios-items { display: grid; gap: 18px; }
.beneficio-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.beneficio-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bc);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}
.beneficio-item h3 {
  font-size: 1.05rem;
  color: #33291E;
  margin: 0 0 5px;
  font-weight: 600;
}
.beneficio-item p {
  font-size: .95rem;
  color: var(--hbach-tx-suave);
  margin: 0;
  line-height: 1.6;
}

.comparativa-block {
  margin: 50px 0;
  padding: 50px 36px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.comparativa-block h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: #fff;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -.015em;
}
.comparativa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comp-col {
  padding: 26px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}
.comp-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.comp-col ul { list-style: none; padding: 0; margin: 0; }
.comp-col li {
  padding: 8px 0;
  color: rgba(255,255,255,.92);
  font-size: .94rem;
  line-height: 1.5;
}
.comp-bach li { color: #fff; }
.comp-disclaimer {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(245,158,11,.18);
  border-left: 3px solid #F59E0B;
  border-radius: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.95);
  line-height: 1.55;
}

.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 50px;
}
.para-quien {
  padding: 24px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hbach-border);
  text-align: center;
  transition: all .18s;
}
.para-quien:hover {
  transform: translateY(-3px);
  border-color: var(--hbach-verde-claro);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.pq-emj { font-size: 2.2rem; margin-bottom: 12px; }
.para-quien h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #33291E;
}
.para-quien p {
  font-size: .9rem;
  color: var(--hbach-tx-suave);
  margin: 0;
  line-height: 1.55;
}

.que-no {
  background: #FFF8E1;
  border-left: 4px solid #F59E0B;
  padding: 22px 26px;
  border-radius: 12px;
  margin: 16px 0 40px;
}
.que-no p {
  margin: 0 0 12px;
  color: #78350F;
  font-size: .98rem;
  line-height: 1.6;
}
.que-no p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   TIPS
   ════════════════════════════════════════════════════════════ */
.tips-section { margin: 50px 0; }

.tips-basicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.tip-card {
  position: relative;
  padding: 28px 26px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--hbach-border);
  transition: all .18s;
  overflow: hidden;
}
.tip-card:hover {
  transform: translateY(-3px);
  border-color: var(--hbach-verde-claro);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.tip-card-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--hbach-verde-claro);
  font-weight: 700;
  opacity: .6;
}
.tip-card-emj {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.tip-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #33291E;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  max-width: 90%;
}
.tip-card p {
  font-size: .94rem;
  color: var(--hbach-tx-suave);
  margin: 0;
  line-height: 1.6;
}

.tips-situaciones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}
.tip-situacion {
  padding: 24px 26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hbach-border);
  border-left: 4px solid var(--hbach-verde);
}
.tip-situacion h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  color: #33291E;
  margin: 0 0 12px;
}
.tip-sit-flores {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tip-flor-chip {
  display: inline-block;
  padding: 5px 12px;
  background: var(--hbach-crema);
  color: var(--hbach-verde);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--hbach-border);
}
.tip-situacion p {
  font-size: .96rem;
  color: var(--hbach-tx-suave);
  margin: 0;
  line-height: 1.65;
}

.tips-banner {
  margin: 60px 0;
  padding: 50px 40px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.tips-banner-emj {
  font-size: 3rem;
  margin-bottom: 16px;
}
.tips-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -.015em;
}
.tips-banner p {
  color: rgba(255,255,255,.95);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.tips-avanzados {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}
.tip-avanzado {
  background: #fff;
  border: 1px solid var(--hbach-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .15s;
}
.tip-avanzado[open] {
  border-color: var(--hbach-verde);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.tip-avanzado summary {
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #33291E;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tip-avanzado summary::-webkit-details-marker { display: none; }
.tip-avanzado summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--hbach-verde);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s;
}
.tip-avanzado[open] summary::after { transform: rotate(45deg); }
.tip-av-body {
  padding: 0 24px 22px;
}
.tip-av-body p {
  margin: 0;
  color: var(--hbach-tx-suave);
  font-size: .98rem;
  line-height: 1.7;
}
.tip-av-body strong { color: #33291E; font-weight: 600; }

.errores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 26px 0 40px;
}
.error-item {
  padding: 22px 24px;
  background: #FEF2F2;
  border-radius: 12px;
  border: 1px solid #FECACA;
  border-left: 4px solid #DC2626;
}
.error-emj {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.error-item h3 {
  font-size: 1rem;
  color: #991B1B;
  margin: 0 0 10px;
  font-weight: 600;
  font-style: italic;
}
.error-item p {
  font-size: .92rem;
  color: #7F1D1D;
  margin: 0;
  line-height: 1.6;
}

/* ════════════ ICONOS SOCIALES ════════════ */
.social-icons {
  display: flex; gap: 12px; justify-content: center;
  margin: 24px 0; padding: 22px 0 4px;
  border-top: 1px solid #3A322A;
}
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #94A3B8;
  transition: all .2s;
}
.social-icons a:hover {
  background: var(--hbach-verde-claro);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .nosotros-stats { grid-template-columns: repeat(2, 1fr); }
  .valores-grid { grid-template-columns: 1fr; }
  .para-quien-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-basicos-grid { grid-template-columns: 1fr; }
  .errores-grid { grid-template-columns: 1fr; }
  .comparativa-grid { grid-template-columns: 1fr; }
  .beneficios-bloque-head { flex-direction: column; gap: 14px; }
}
@media (max-width: 580px) {
  .home-sec { padding: 60px 20px; }
  .home-grupos { grid-template-columns: 1fr; }
  .home-flores-grid { grid-template-columns: 1fr; }
  .home-foot-grid { grid-template-columns: 1fr; }
  .home-hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .home-hero-cta { flex-direction: column; }
  .home-btn { width: 100%; justify-content: center; }
  .home-cta-btns { flex-direction: column; }
  .home-cta-btns .home-btn { width: 100%; }
  .nosotros-stats { grid-template-columns: 1fr; padding: 22px; }
  .valores-block { padding: 36px 22px; }
  .faq-cta { padding: 36px 22px; }
  .page-hero { padding: 60px 20px 50px; }
  .para-quien-grid { grid-template-columns: 1fr; }
  .beneficios-bloque { padding: 26px 22px; }
  .comparativa-block { padding: 36px 22px; }
  .tips-banner { padding: 36px 22px; }
  .tip-card { padding: 22px 20px; }
}

/* ════════════════════════════════════════════════════════════
   HISTORIA — Dr. Edward Bach
   ════════════════════════════════════════════════════════════ */

/* Intro: foto + bio */
.hist-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}
.hist-foto-wrap {
  position: sticky;
  top: 84px;
}
.hist-foto {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22), 0 4px 12px rgba(0,0,0,.1);
  display: block;
  filter: sepia(18%) contrast(1.04);
}
.hist-foto-caption {
  margin-top: 14px;
  background: var(--hbach-crema-medio);
  border-radius: 14px;
  padding: 16px 18px;
}
.hist-foto-caption h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hbach-tx);
  margin: 0 0 4px;
}
.hist-foto-caption .dates {
  font-size: .82rem;
  color: var(--hbach-tx-muy-suave);
  margin: 0 0 12px;
}
.hist-foto-data {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.hist-foto-data dt {
  font-size: .78rem;
  color: var(--hbach-tx-muy-suave);
  font-weight: 500;
}
.hist-foto-data dd {
  font-size: .86rem;
  color: var(--hbach-tx);
  font-weight: 600;
  margin: 0 0 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hbach-border);
}
.hist-foto-data dd:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Quote */
.hist-quote {
  border-left: 4px solid var(--hbach-verde-claro);
  padding: 20px 24px;
  margin: 28px 0;
  background: linear-gradient(135deg, var(--hbach-verde-bg), rgba(255,255,255,0));
  border-radius: 0 14px 14px 0;
}
.hist-quote p {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: #3A322A;
  margin: 0 0 10px;
  line-height: 1.7;
}
.hist-quote cite {
  font-size: .82rem;
  color: var(--hbach-tx-muy-suave);
  font-style: normal;
  font-weight: 600;
}

/* Timeline */
.hist-timeline {
  position: relative;
  padding-left: 36px;
  margin: 40px 0;
}
.hist-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--hbach-verde-claro), rgba(138,169,146,.15));
}
.hist-tl-item {
  position: relative;
  margin-bottom: 36px;
}
.hist-tl-item:last-child { margin-bottom: 0; }
.hist-tl-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hbach-verde);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--hbach-verde-claro);
}
.hist-tl-year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--hbach-verde);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hist-tl-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hbach-tx);
  margin: 0 0 8px;
}
.hist-tl-item p {
  font-size: .96rem;
  color: var(--hbach-tx-suave);
  line-height: 1.7;
  margin: 0;
}

/* Métodos de preparación */
.hist-metodos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.hist-metodo {
  border-radius: 18px;
  padding: 28px;
}
.hist-metodo-sol { background: linear-gradient(135deg, #FFF8E1, #FFFDE7); border: 1px solid #FDD835; }
.hist-metodo-fuego { background: linear-gradient(135deg, #FBE9E7, #FFF3E0); border: 1px solid #FF8A65; }
.hist-metodo-ico { font-size: 2.4rem; margin-bottom: 12px; }
.hist-metodo h3 { font-family: 'Fraunces', serif; font-size: 1.08rem; font-weight: 700; color: var(--hbach-tx); margin: 0 0 10px; }
.hist-metodo p { font-size: .92rem; color: var(--hbach-tx-suave); line-height: 1.65; margin: 0 0 10px; }
.hist-metodo .tag { font-size: .78rem; font-weight: 700; color: var(--hbach-tx-muy-suave); }

/* Pilares filosóficos */
.hist-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.hist-pilar {
  background: var(--hbach-crema);
  border: 1px solid var(--hbach-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.hist-pilar-ico { font-size: 2rem; margin-bottom: 12px; }
.hist-pilar h4 { font-size: 1rem; font-weight: 700; color: var(--hbach-tx); margin: 0 0 8px; }
.hist-pilar p { font-size: .88rem; color: var(--hbach-tx-suave); line-height: 1.6; margin: 0; }

/* Obras */
.hist-obra {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px;
  background: var(--hbach-crema);
  border-radius: 14px;
  margin-bottom: 12px;
}
.hist-obra-ico { font-size: 2rem; flex-shrink: 0; }
.hist-obra h4 { font-size: 1rem; font-weight: 700; color: var(--hbach-tx); margin: 0 0 5px; }
.hist-obra p { font-size: .9rem; color: var(--hbach-tx-suave); margin: 0; line-height: 1.6; }

/* CTA final */
.hist-cta {
  background: linear-gradient(135deg, var(--hbach-verde) 0%, #7E3A24 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  margin-top: 64px;
}
.hist-cta h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; margin: 0 0 12px; color: #fff; }
.hist-cta p { font-size: 1.02rem; color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }
.hist-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive historia */
@media (max-width: 820px) {
  .hist-intro { grid-template-columns: 1fr; gap: 32px; }
  .hist-foto-wrap { position: static; display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; }
  .hist-metodos { grid-template-columns: 1fr; }
  .hist-pilares { grid-template-columns: 1fr 1fr; }
  .hist-cta { padding: 40px 28px; }
}
@media (max-width: 580px) {
  .hist-foto-wrap { grid-template-columns: 1fr; }
  .hist-pilares { grid-template-columns: 1fr; }
  .hist-cta { padding: 32px 20px; }
  .hist-timeline { padding-left: 28px; }
}

/* ══════════════════════════════════════════════════════════════
   FLOR DETALLE — /flores/{slug}  (flor.php)
   ══════════════════════════════════════════════════════════════ */

/* Hero */
.fd-hero {
  background: linear-gradient(160deg, var(--fd-cl, #F1F8E9) 0%, #f5fbf5 100%);
  border-bottom: 3px solid rgba(138,169,146,.25);
  padding: 56px 24px 40px;
  text-align: center;
}
.fd-hero-in { max-width: 720px; margin: 0 auto; }
.fd-hero-top { display: flex; justify-content: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.fd-badge {
  display: inline-block; padding: 5px 16px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; font-family: 'Mulish', sans-serif;
  background: var(--fd-c, #8AA992); color: #fff;
}
.fd-badge-num { background: rgba(0,0,0,.12); color: #3A322A; }
.fd-hero-emoji { font-size: 5rem; line-height: 1; margin-bottom: 16px; filter: drop-shadow(0 4px 12px rgba(138,169,146,.4)); }
.fd-hero-h1 { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 700; color: #1A2E1A; margin: 0 0 6px; line-height: 1.15; }
.fd-hero-en { font-size: 1.1rem; color: var(--fd-c, #8AA992); font-style: italic; margin: 0 0 18px; font-family: 'Fraunces', serif; }
.fd-hero-lead { font-size: 1.05rem; color: #374151; max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }

/* Prev / Next en el hero */
.fd-prevnext { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.fd-pn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px; font-size: .85rem; font-weight: 500;
  background: rgba(255,255,255,.7); border: 1px solid rgba(0,0,0,.08);
  color: #374151; text-decoration: none; transition: all .18s; font-family: 'Mulish', sans-serif;
}
.fd-pn:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.fd-pn span { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Breadcrumb */
.fd-bc { background: #F9FAF8; border-bottom: 1px solid #E8EDE8; }
.fd-bc-in {
  max-width: 1100px; margin: 0 auto; padding: 10px 24px;
  font-size: .8rem; color: #8A8275; font-family: 'Mulish', sans-serif;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.fd-bc-in a { color: #8AA992; text-decoration: none; }
.fd-bc-in a:hover { text-decoration: underline; }
.fd-bc-in span[aria-hidden] { color: #9CA3AF; }

/* Transform card */
.fd-transform { background: #fff; padding: 28px 24px; border-bottom: 1px solid #EEF2EE; }
.fd-transform-in {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
}
.fd-estado {
  padding: 18px 20px; border-radius: 14px;
  border: 1.5px solid #E7DECE; background: #FEE2E220;
  text-align: center; font-family: 'Mulish', sans-serif;
}
.fd-pos { background: #D1FAE520 !important; }
.fd-estado-lbl { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #EF4444; margin-bottom: 8px; }
.fd-estado p { margin: 0; font-size: .92rem; font-weight: 600; color: #3A322A; line-height: 1.4; }
.fd-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fd-arrow-emoji { font-size: 1.6rem; }
.fd-arrow svg { width: 40px; color: #9CA3AF; }

/* Layout principal */
.fd-layout {
  max-width: 1100px; margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start;
}

/* Secciones del artículo */
.fd-main { min-width: 0; }
.fd-sec { margin-bottom: 44px; }
.fd-sec:last-child { margin-bottom: 0; }
.fd-h2 {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700;
  color: #1A2E1A; margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 2px solid #EFE7D8;
}
.fd-sec p { font-size: .97rem; color: #374151; line-height: 1.75; margin: 0 0 14px; }
.fd-sec p:last-child { margin-bottom: 0; }

/* Usos */
.fd-usos { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.fd-uso {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 10px; background: #F9FAF8;
  border-left: 4px solid var(--fd-c, #8AA992);
  font-size: .93rem; color: #3A322A; font-family: 'Mulish', sans-serif;
}
.fd-uso-ico { font-size: 1.2rem; flex-shrink: 0; }

/* Pasos */
.fd-pasos { padding-left: 22px; margin: 16px 0; }
.fd-pasos li { font-size: .93rem; color: #374151; line-height: 1.65; margin-bottom: 10px; padding-left: 4px; }
.fd-pasos li strong { color: #1A2E1A; }

/* Consejo */
.fd-consejo {
  background: var(--fd-cl, #EFE7D8);
  border-left: 5px solid var(--fd-c, #8AA992);
  border-radius: 0 14px 14px 0;
  padding: 22px 24px; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.fd-consejo-emoji { font-size: 2rem; }
.fd-consejo p { margin: 0; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: #1A2E1A; line-height: 1.6; }
.fd-consejo cite { font-size: .78rem; color: #8A8275; font-style: normal; font-family: 'Mulish', sans-serif; }

/* Grupo grid */
.fd-grupo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px; margin: 18px 0;
}
.fd-grupo-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
  padding: 14px 10px; border-radius: 12px; text-decoration: none;
  background: var(--fd-cl, #EFE7D8); border: 2px solid transparent;
  transition: all .18s; font-family: 'Mulish', sans-serif;
}
.fd-grupo-card:hover { border-color: var(--fd-c, #8AA992); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.fd-grupo-card--active { border-color: var(--fd-c, #8AA992); box-shadow: 0 0 0 3px rgba(138,169,146,.2); }
.fd-grupo-card-emoji { font-size: 1.8rem; }
.fd-grupo-card-num { font-size: .65rem; font-weight: 700; color: #9CA3AF; letter-spacing: .05em; }
.fd-grupo-card-name { font-size: .82rem; font-weight: 700; color: #3A322A; }
.fd-grupo-card-est { font-size: .7rem; color: #8A8275; line-height: 1.3; }

/* FAQ */
.fd-faq { display: flex; flex-direction: column; gap: 8px; }
.fd-faq-item {
  border: 1.5px solid #E7DECE; border-radius: 10px; overflow: hidden;
  font-family: 'Mulish', sans-serif;
}
.fd-faq-item[open] { border-color: #8AA99240; }
.fd-faq-item summary {
  padding: 16px 20px; cursor: pointer; font-size: .93rem; font-weight: 600;
  color: #3A322A; list-style: none; display: flex; justify-content: space-between; align-items: center;
  background: #F9FAF8; transition: background .15s;
}
.fd-faq-item summary:hover { background: #F0F7F4; }
.fd-faq-item summary::after { content: '+'; font-size: 1.2rem; color: #8AA992; flex-shrink: 0; }
.fd-faq-item[open] summary::after { content: '−'; }
.fd-faq-item p { padding: 16px 20px; margin: 0; font-size: .91rem; color: #374151; line-height: 1.7; background: #fff; }

/* Artículos del blog */
.fd-arts { display: flex; flex-direction: column; gap: 8px; }
.fd-art-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px; background: #F9FAF8;
  border: 1px solid #E7DECE; text-decoration: none; color: #3A322A;
  font-size: .88rem; font-family: 'Mulish', sans-serif; transition: all .15s;
}
.fd-art-link:hover { background: #EFE7D8; border-color: #8AA99240; }
.fd-art-arr { margin-left: auto; color: #8AA992; flex-shrink: 0; }

/* AdSense */
.fd-ad { margin: 32px 0; min-height: 90px; }

/* ── SIDEBAR ── */
.fd-aside { display: flex; flex-direction: column; gap: 20px; }

.fd-aside-img {
  width: 100%; height: auto; border-radius: 16px;
  object-fit: cover; aspect-ratio: 1; box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.fd-ficha {
  background: var(--fd-cl, #EFE7D8); border-radius: 14px; padding: 20px;
  border: 1.5px solid rgba(138,169,146,.25);
}
.fd-ficha-h {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fd-c, #8AA992); margin: 0 0 14px; font-family: 'Mulish', sans-serif;
}
.fd-ficha dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; margin: 0; }
.fd-ficha dt { font-size: .75rem; font-weight: 700; color: #8A8275; font-family: 'Mulish', sans-serif; white-space: nowrap; }
.fd-ficha dd { font-size: .8rem; color: #3A322A; margin: 0; line-height: 1.4; }

.fd-aside-grupo h3 {
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #8A8275; margin: 0 0 10px; font-family: 'Mulish', sans-serif;
}
.fd-aside-flor-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 8px; text-decoration: none; color: #3A322A;
  font-size: .82rem; font-family: 'Mulish', sans-serif; transition: all .15s;
  border-left: 3px solid transparent;
}
.fd-aside-flor-link:hover { background: #F0F7F4; border-left-color: var(--fd-c, #8AA992); }
.fd-aside-flor-link--active { background: rgba(138,169,146,.1); border-left-color: var(--fd-c, #8AA992); font-weight: 600; }
.fd-aside-num { font-size: .7rem; color: #9CA3AF; }

.fd-aside-nav { display: flex; flex-direction: column; gap: 8px; }
.fd-aside-nav-btn {
  display: block; padding: 10px 14px; border-radius: 9px; border: 1.5px solid #E7DECE;
  text-decoration: none; color: #374151; font-size: .82rem; font-family: 'Mulish', sans-serif;
  transition: all .15s; text-align: center;
}
.fd-aside-nav-btn:hover { border-color: #8AA992; background: #EFE7D8; color: #B0563A; }

.fd-aside-cta {
  display: block; text-align: center; padding: 13px; border-radius: 10px;
  background: #B0563A; color: #fff; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: background .18s; font-family: 'Mulish', sans-serif;
}
.fd-aside-cta:hover { background: #7E3A24; }

/* ── EXPLORADOR COMPLETO ── */
.fd-explorer { background: #F9FAF8; padding: 64px 24px; margin-top: 48px; border-top: 2px solid #EFE7D8; }
.fd-exp-in { max-width: 1100px; margin: 0 auto; }
.fd-explorer h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: #1A2E1A; margin: 0 0 8px; text-align: center; }
.fd-explorer > .fd-exp-in > p { text-align: center; color: #8A8275; font-size: .95rem; margin: 0 0 40px; }
.fd-exp-group { margin-bottom: 36px; }
.fd-exp-group h3 { font-family: 'Mulish', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #374151; margin: 0 0 14px; }
.fd-exp-cnt { font-weight: 400; color: #9CA3AF; }
.fd-exp-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.fd-exp-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
  padding: 10px 8px; border-radius: 12px; width: 90px;
  background: var(--fd-cl, #EFE7D8); border: 2px solid transparent;
  text-decoration: none; transition: all .18s; font-family: 'Mulish', sans-serif;
}
.fd-exp-card:hover { border-color: var(--fd-c, #8AA992); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.fd-exp-card--active { border-color: var(--fd-c, #8AA992); box-shadow: 0 0 0 3px rgba(138,169,146,.2); }
.fd-exp-card img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; }
.fd-exp-num { font-size: .6rem; font-weight: 700; color: #9CA3AF; }
.fd-exp-name { font-size: .7rem; font-weight: 600; color: #3A322A; line-height: 1.2; }
.fd-exp-cta { text-align: center; margin-top: 32px; }
.fd-exp-btn {
  display: inline-block; padding: 13px 32px; border-radius: 10px;
  background: #B0563A; color: #fff; font-weight: 700; text-decoration: none;
  font-family: 'Mulish', sans-serif; font-size: .9rem; transition: background .18s;
}
.fd-exp-btn:hover { background: #7E3A24; }

/* ── RESPONSIVE FLOR ── */
@media (max-width: 900px) {
  .fd-layout { grid-template-columns: 1fr; }
  .fd-aside { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .fd-aside-img { grid-column: 1 / -1; max-height: 240px; }
}
@media (max-width: 640px) {
  .fd-hero-h1 { font-size: 1.9rem; }
  .fd-transform-in { grid-template-columns: 1fr; }
  .fd-arrow { flex-direction: row; justify-content: center; }
  .fd-arrow svg { transform: rotate(90deg); }
  .fd-aside { grid-template-columns: 1fr; }
  .fd-exp-card { width: 76px; }
  .fd-exp-card img { width: 42px; height: 42px; }
  .fd-grupo-grid { grid-template-columns: 1fr 1fr; }
  .fd-layout { padding: 24px 16px; }
  .fd-explorer { padding: 40px 16px; }
}
