/* ============================================================
   Elements Florist — sistema de diseño
   Verde #06332E · Dorado #99802E · Crema #FAF7F0
   ============================================================ */

:root {
  /* marca */
  --green-900: #06332e;
  --green-800: #0b4a41;
  --green-700: #146152;
  --green-600: #2b8a6b;
  --green-100: #e3ede9;
  --gold-700: #7d681f;
  --gold-600: #99802e;
  --gold-500: #b89a33;
  --gold-100: #f2ecd9;

  /* superficies */
  --cream: #faf7f0;
  --cream-2: #f4efe4;
  --paper: #ffffff;

  /* tinta */
  --ink: #14201c;
  --ink-2: #4a5a54;
  --ink-3: #7c8c85;
  --line: rgba(6, 51, 46, 0.12);
  --line-2: rgba(6, 51, 46, 0.06);

  /* estado */
  --ok: #2b8a6b;
  --warn: #b8862b;
  --crit: #a33a2e;

  /* forma */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-full: 999px;
  --shadow-1: 0 1px 2px rgba(6, 51, 46, 0.06), 0 4px 14px rgba(6, 51, 46, 0.05);
  --shadow-2: 0 18px 50px rgba(6, 51, 46, 0.16);

  /* movimiento */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* tipografía */
  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

button { font: inherit; color: inherit; cursor: pointer; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

.wrap { width: min(1240px, 100% - 48px); margin-inline: auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

/* ---------- botones ---------- */
.btn {
  --btn-bg: var(--green-900);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 200ms ease,
    border-color 200ms ease, color 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--green-900);
  border-color: var(--line);
}
.btn--gold { --btn-bg: var(--gold-600); --btn-fg: #fff; }
.btn--sm { padding: 8px 15px; font-size: 12px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--green-800); }
  .btn--ghost:hover { background: var(--green-100); border-color: transparent; }
  .btn--gold:hover { background: var(--gold-700); }
}

/* ---------- header ---------- */
.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar b { color: #fff; font-weight: 500; }

.citypick { display: inline-flex; gap: 2px; padding: 3px; background: rgba(255,255,255,.09); border-radius: var(--r-full); }
.citypick button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  transition: background-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
.citypick button:active { transform: scale(0.97); }
.citypick button[aria-pressed="true"] { background: var(--cream); color: var(--green-900); font-weight: 600; }

.langpick { display: inline-flex; align-items: center; gap: 6px; }
.langpick button {
  border: 0; background: transparent; padding: 2px 4px;
  color: rgba(255,255,255,.55); font-size: 11.5px; letter-spacing: .08em; font-weight: 600;
  transition: color 200ms ease;
}
.langpick button[aria-pressed="true"] { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.langpick span { opacity: .35; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.masthead__in {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  transition: color 200ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--green-900); }
  .nav a:hover::after { transform: scaleX(1); }
}

.masthead__actions { display: flex; align-items: center; gap: 10px; }

.cartbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-full);
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  transition: transform 160ms var(--ease-out), border-color 200ms ease;
}
.cartbtn:active { transform: scale(0.97); }
.cartbtn__n {
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--gold-600); color: #fff;
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 600;
  transition: transform 200ms var(--ease-out);
}
.cartbtn__n[data-bump] { transform: scale(1.28); }

.burger { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-full); padding: 9px 14px; font-size: 12.5px; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--green-900); color: var(--cream); overflow: clip; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; min-height: 560px; }
.hero__copy { padding: 84px 64px 84px 0; display: flex; flex-direction: column; justify-content: center; }
.hero__copy .eyebrow { color: var(--gold-500); }
.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
  margin: 18px 0 0;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-500); }
.hero p { color: rgba(255, 255, 255, 0.72); font-size: 16px; max-width: 46ch; margin: 20px 0 0; }
.hero__cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero__cta .btn { --btn-bg: var(--cream); --btn-fg: var(--green-900); }
.hero__cta .btn--ghost { --btn-bg: transparent; --btn-fg: var(--cream); border-color: rgba(255,255,255,.28); }
@media (hover: hover) and (pointer: fine) {
  .hero__cta .btn:hover { background: #fff; }
  .hero__cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: transparent; }
}
.hero__art { position: relative; }
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-900) 0%, transparent 34%);
}
.hero__stamp {
  position: absolute; right: 28px; bottom: 28px; z-index: 2;
  background: rgba(250, 247, 240, 0.94);
  color: var(--green-900);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  font-size: 12px;
  box-shadow: var(--shadow-2);
  max-width: 240px;
}
.hero__stamp b { display: block; font-size: 13px; margin-bottom: 2px; }

/* ---------- barra de confianza ---------- */
.trust { background: var(--cream-2); border-bottom: 1px solid var(--line-2); }
.trust__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); }
.trust__it { background: var(--cream-2); padding: 22px 24px; }
.trust__it b { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.trust__it span { font-size: 12.5px; color: var(--ink-2); }

/* ---------- secciones ---------- */
.sec { padding: 84px 0; }
.sec--paper { background: var(--paper); }
.sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.sec__head h2 { font-size: clamp(30px, 3.4vw, 42px); }
.sec__head p { color: var(--ink-2); max-width: 52ch; margin: 10px 0 0; }

/* ---------- ocasiones ---------- */
.occ { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.occ__card {
  position: relative;
  border: 0; padding: 0; text-align: left;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-100);
  transition: transform 220ms var(--ease-out);
}
.occ__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.occ__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(6, 51, 46, 0.78) 100%);
}
.occ__lbl { display: block; position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; }
.occ__lbl b { display: block; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.occ__lbl span { font-size: 12px; opacity: 0.78; }
.occ__card:active { transform: scale(0.99); }
@media (hover: hover) and (pointer: fine) {
  .occ__card:hover img { transform: scale(1.05); }
}

/* ---------- catálogo ---------- */
.filters {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 0 26px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 32px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 12.5px;
  color: var(--ink-2);
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.chip:active { transform: scale(0.97); }
.chip[aria-pressed="true"] { background: var(--green-900); border-color: var(--green-900); color: var(--cream); font-weight: 500; }
.filters__sep { width: 1px; height: 22px; background: var(--line); margin: 0 6px; }
.filters__count { margin-left: auto; font-size: 12px; color: var(--ink-3); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 22px;
}
.card {
  border: 0; padding: 0; background: transparent; text-align: left;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  animation: cardIn 340ms var(--ease-out) forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.card__ph {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--green-100);
}
.card__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(250, 247, 240, 0.94);
  color: var(--green-900);
  border-radius: var(--r-full);
  padding: 4px 11px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.card__add {
  display: block;
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(6px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.card__name { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; margin: 14px 0 0; }
.card__meta { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.card__price { display: inline-block; font-size: 13.5px; font-weight: 600; }
.card__from { display: inline-block; font-size: 11.5px; color: var(--ink-3); }
.card:active .card__ph { transform: scale(0.995); }
@media (hover: hover) and (pointer: fine) {
  .card:hover .card__ph img { transform: scale(1.05); }
  .card:hover .card__add { opacity: 1; transform: translateY(0); }
}
@media (hover: none) { .card__add { opacity: 1; transform: none; } }

.empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--ink-3); }

/* ---------- por qué directo ---------- */
.direct { background: var(--green-900); color: var(--cream); }
.direct__in { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.direct h2 { font-size: clamp(30px, 3.4vw, 42px); }
.direct h2 em { font-style: italic; color: var(--gold-500); }
.direct p { color: rgba(255, 255, 255, 0.7); margin: 18px 0 0; }
.direct__list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
.direct__list li {
  display: grid; grid-template-columns: 26px 1fr; gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.direct__list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.direct__list b { color: #fff; font-weight: 500; }
.direct__list span { color: rgba(255, 255, 255, 0.62); font-size: 13px; display: block; }
.direct__list i { color: var(--gold-500); font-style: normal; font-size: 15px; }
.direct__art { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5 / 6; }
.direct__art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- bodas ---------- */
.wed__gal { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 44px; }
.wed__gal figure { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; background: var(--green-100); }
.wed__gal figure:nth-child(1), .wed__gal figure:nth-child(6) { grid-row: span 2; aspect-ratio: 1 / 2.06; }
.wed__gal img { width: 100%; height: 100%; object-fit: cover; }

.wedform {
  background: var(--cream-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}
.wedform h3 { font-size: 27px; }
.wedform p { color: var(--ink-2); margin: 10px 0 0; font-size: 14px; }
.wedform__f { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wedform__f .full { grid-column: 1 / -1; }

/* ---------- campos ---------- */
.field { display: grid; gap: 6px; }
.field > label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 11px 13px;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(43, 138, 107, 0.14);
}
.field small { font-size: 11.5px; color: var(--ink-3); }

/* ---------- local ---------- */
.shop__in { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.shop__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.shop__pics figure { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 3; }
.shop__pics figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.shop__pics img { width: 100%; height: 100%; object-fit: cover; }
.hours { list-style: none; margin: 26px 0 0; padding: 0; font-size: 13.5px; }
.hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.hours li b { font-weight: 500; }

/* ---------- footer ---------- */
.foot { background: var(--green-900); color: rgba(255, 255, 255, 0.62); padding: 62px 0 30px; font-size: 13px; }
.foot__in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot h4 { color: #fff; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot a { text-decoration: none; transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) { .foot a:hover { color: #fff; } }
.foot__logo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 16px; }
.foot__bot { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; }

/* ============================================================
   Overlays: drawer del carrito, modales, chat
   ============================================================ */
.scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(6, 51, 46, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}
.scrim[data-open] { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(430px, 100%);
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms var(--ease-drawer);
  box-shadow: var(--shadow-2);
}
.drawer[data-open] { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line-2); }
.drawer__head h3 { font-size: 22px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.drawer__foot { padding: 20px 24px 26px; border-top: 1px solid var(--line-2); background: var(--cream-2); }

.iconbtn {
  border: 0; background: transparent; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: var(--r-full);
  color: var(--ink-2); font-size: 18px; line-height: 1;
  transition: background-color 200ms ease, transform 160ms var(--ease-out);
}
.iconbtn:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .iconbtn:hover { background: var(--line-2); } }

.line {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 13px;
  padding: 15px 0; border-bottom: 1px solid var(--line-2);
  align-items: start;
}
.line img { width: 62px; height: 76px; object-fit: cover; border-radius: var(--r-sm); }
.line b { font-family: var(--serif); font-size: 17px; font-weight: 500; display: block; }
.line small { color: var(--ink-3); font-size: 12px; }
.line__price { font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.line__rm { border: 0; background: transparent; color: var(--ink-3); font-size: 11.5px; padding: 3px 0; text-decoration: underline; text-underline-offset: 2px; }

.tot { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; color: var(--ink-2); }
.tot--big { font-size: 17px; color: var(--ink); font-weight: 600; padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--line); }

/* modal */
.modal {
  position: fixed; z-index: 70;
  top: 50%; left: 50%;
  width: min(920px, calc(100% - 32px));
  max-height: min(88vh, 820px);
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out);
}
.modal[data-open] { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.modal--narrow { width: min(560px, calc(100% - 32px)); }
.modal__body { overflow-y: auto; }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(250,247,240,.92); }

/* ficha de producto */
.pdp { display: grid; grid-template-columns: 1fr 1fr; }
.pdp__art { background: var(--green-100); }
.pdp__art img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.pdp__info { padding: 40px 38px; display: flex; flex-direction: column; }
.pdp__info h3 { font-size: 33px; margin-top: 8px; }
.pdp__desc { color: var(--ink-2); font-size: 14px; margin: 14px 0 0; }
.sizes { display: grid; gap: 8px; margin: 26px 0 0; }
.size {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 13px 15px;
  text-align: left;
  transition: border-color 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out);
}
.size:active { transform: scale(0.99); }
.size[aria-pressed="true"] { border-color: var(--green-600); background: rgba(43, 138, 107, 0.06); box-shadow: inset 0 0 0 1px var(--green-600); }
.size b { font-size: 13.5px; font-weight: 600; display: block; }
.size small { font-size: 12px; color: var(--ink-3); }
.size__p { font-size: 15px; font-weight: 600; }
.pdp__foot { margin-top: auto; padding-top: 26px; }
.pdp__note { font-size: 12px; color: var(--ink-3); margin: 12px 0 0; text-align: center; }

/* checkout */
.co__head { padding: 24px 30px 0; }
.co__steps { display: flex; gap: 6px; margin: 18px 0 0; }
.co__steps span {
  flex: 1; height: 3px; border-radius: var(--r-full);
  background: var(--line);
  transition: background-color 300ms var(--ease-out);
}
.co__steps span[data-on] { background: var(--green-600); }
.co__pane { padding: 26px 30px 30px; display: none; }
.co__pane[data-on] { display: block; animation: paneIn 300ms var(--ease-out); }
@keyframes paneIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.co__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.co__row .full { grid-column: 1 / -1; }
.co__foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 30px 26px; border-top: 1px solid var(--line-2); background: var(--cream-2); }
.co__tot { font-size: 13px; color: var(--ink-2); }
.co__tot b { display: block; font-size: 19px; color: var(--ink); }

.toggle2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.toggle2 button {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-md);
  padding: 13px; font-size: 13px; text-align: left;
  transition: border-color 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out);
}
.toggle2 button:active { transform: scale(0.99); }
.toggle2 button[aria-pressed="true"] { border-color: var(--green-600); background: rgba(43,138,107,.06); box-shadow: inset 0 0 0 1px var(--green-600); }
.toggle2 b { display: block; font-weight: 600; }
.toggle2 small { color: var(--ink-3); font-size: 11.5px; }

.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slots button {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-md);
  padding: 11px 8px; font-size: 12.5px; text-align: center;
  transition: border-color 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out);
}
.slots button:active { transform: scale(0.98); }
.slots button[aria-pressed="true"] { border-color: var(--green-600); background: rgba(43,138,107,.06); box-shadow: inset 0 0 0 1px var(--green-600); }

.paybox { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); padding: 18px; }
.paybox__hd { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 14px; }
.recap { list-style: none; margin: 0 0 18px; padding: 0; font-size: 13.5px; }
.recap li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.recap li span:first-child { color: var(--ink-3); }
.recap li span:last-child { text-align: right; max-width: 60%; }

.done { text-align: center; padding: 52px 40px; }
.done__mark {
  width: 62px; height: 62px; margin: 0 auto 22px;
  border-radius: var(--r-full);
  background: rgba(43, 138, 107, 0.12);
  color: var(--green-600);
  display: grid; place-items: center; font-size: 27px;
  animation: pop 420ms var(--ease-out);
}
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.done h3 { font-size: 29px; }
.done p { color: var(--ink-2); margin: 12px auto 0; max-width: 42ch; font-size: 14px; }
.done__ord { display: inline-block; margin-top: 20px; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r-full); padding: 8px 18px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }

/* ============================================================
   El Comercial — widget de chat
   ============================================================ */
.chatfab {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  border: 0;
  background: var(--green-900);
  color: var(--cream);
  border-radius: var(--r-full);
  padding: 13px 20px 13px 15px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-2);
  transition: transform 180ms var(--ease-out), background-color 200ms ease;
}
.chatfab:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .chatfab:hover { background: var(--green-800); } }
.chatfab__dot { width: 8px; height: 8px; border-radius: var(--r-full); background: var(--gold-500); box-shadow: 0 0 0 0 rgba(184,154,51,.6); animation: live 2.4s ease-out infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(184,154,51,.55); } 70% { box-shadow: 0 0 0 9px rgba(184,154,51,0); } 100% { box-shadow: 0 0 0 0 rgba(184,154,51,0); } }
.chatfab[data-hidden] { opacity: 0; pointer-events: none; transform: scale(0.95); }

.chat {
  position: fixed; right: 22px; bottom: 22px; z-index: 65;
  width: min(378px, calc(100vw - 32px));
  height: min(590px, calc(100vh - 44px));
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.95) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms var(--ease-out), opacity 180ms var(--ease-out);
}
.chat[data-open] { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.chat__head { background: var(--green-900); color: var(--cream); padding: 15px 16px; display: flex; align-items: center; gap: 11px; }
.chat__av {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--gold-600); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  flex-shrink: 0;
}
.chat__id b { display: block; font-size: 13.5px; font-weight: 600; }
.chat__id span { font-size: 11.5px; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 5px; }
.chat__id i { width: 6px; height: 6px; border-radius: var(--r-full); background: #63d3a4; display: inline-block; }
.chat__head .iconbtn { margin-left: auto; color: rgba(255, 255, 255, 0.75); }
@media (hover: hover) and (pointer: fine) { .chat__head .iconbtn:hover { background: rgba(255,255,255,.12); } }

.chat__log { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; }
.bub {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  animation: bubIn 260ms var(--ease-out) forwards;
}
@keyframes bubIn { to { opacity: 1; transform: none; } }
.bub--bot { align-self: flex-start; background: var(--paper); border: 1px solid var(--line-2); border-bottom-left-radius: 5px; }
.bub--me { align-self: flex-end; background: var(--green-900); color: var(--cream); border-bottom-right-radius: 5px; }
.bub b { font-weight: 600; }

.bub--card { background: var(--paper); border: 1px solid var(--line); padding: 0; overflow: hidden; max-width: 90%; width: 100%; }
.bub--card img { width: 100%; height: 132px; object-fit: cover; }
.bub--card div { padding: 12px 14px; }
.bub--card strong { font-family: var(--serif); font-size: 17px; font-weight: 500; display: block; }
.bub--card small { color: var(--ink-3); font-size: 12px; }
.bub--card .btn { margin-top: 10px; }

.typing { align-self: flex-start; display: inline-flex; gap: 4px; background: var(--paper); border: 1px solid var(--line-2); border-radius: 16px; border-bottom-left-radius: 5px; padding: 13px 15px; }
.typing i { width: 6px; height: 6px; border-radius: var(--r-full); background: var(--ink-3); animation: dot 1.3s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot { 0%, 60%, 100% { opacity: 0.28; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chat__quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 12px; }
.chat__quick button {
  border: 1px solid var(--green-900); background: transparent; color: var(--green-900);
  border-radius: var(--r-full); padding: 7px 14px; font-size: 12.5px;
  transition: background-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
  opacity: 0; transform: translateY(6px);
  animation: bubIn 260ms var(--ease-out) forwards;
}
.chat__quick button:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .chat__quick button:hover { background: var(--green-900); color: var(--cream); } }

.chat__in { display: flex; gap: 8px; padding: 12px 14px 14px; border-top: 1px solid var(--line-2); background: var(--cream-2); }
.chat__in input { flex: 1; font: inherit; font-size: 13.5px; border: 1px solid var(--line); border-radius: var(--r-full); padding: 10px 15px; background: var(--paper); }
.chat__in input:focus { outline: 0; border-color: var(--green-600); }
.chat__in button { border: 0; background: var(--green-900); color: var(--cream); width: 38px; height: 38px; border-radius: var(--r-full); display: grid; place-items: center; transition: transform 160ms var(--ease-out); }
.chat__in button:active { transform: scale(0.94); }
.chat__foot { font-size: 10.5px; color: var(--ink-3); text-align: center; padding: 0 14px 10px; background: var(--cream-2); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 90;
  transform: translateX(-50%) translateY(calc(100% + 34px));
  opacity: 0;
  background: var(--green-900); color: var(--cream);
  border-radius: var(--r-full);
  padding: 12px 22px; font-size: 13px;
  box-shadow: var(--shadow-2);
  transition: transform 420ms var(--ease-out), opacity 240ms var(--ease-out);
  white-space: nowrap;
}
.toast[data-open] { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- utilidades ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .occ { grid-template-columns: repeat(2, 1fr); }
  .foot__in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .wrap { width: calc(100% - 36px); }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding: 60px 0 48px; }
  .hero__art { height: 320px; }
  .hero__art::after { background: linear-gradient(180deg, var(--green-900) 0%, transparent 30%); }
  .trust__in { grid-template-columns: 1fr 1fr; }
  .direct__in, .shop__in, .wedform { grid-template-columns: 1fr; gap: 34px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__art img { min-height: 260px; max-height: 300px; }
  .pdp__info { padding: 28px 24px; }
  .wed__gal { grid-template-columns: repeat(3, 1fr); }
  .wed__gal figure:nth-child(1), .wed__gal figure:nth-child(6) { grid-row: auto; aspect-ratio: 1; }
  .sec { padding: 60px 0; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .co__row, .wedform__f { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; }
  .chat { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; }
  .chatfab { right: 16px; bottom: 16px; }
  .card__name { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .card { opacity: 1; transform: none; }
}

/* ============================================================
   EL ATELIER — armá tu propio arreglo
   ============================================================ */
.atelier .sec__head { align-items: center; }

.atl {
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 30px;
  align-items: start;
}

/* ---------- pasos ---------- */
.atl__tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--cream-2);
  border-radius: var(--r-full);
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}
.atl__tabs::-webkit-scrollbar { display: none; }
.atl__tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  border-radius: var(--r-full);
  padding: 10px 16px;
  font-size: 13px;
  transition: background-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
.atl__tab:active { transform: scale(0.98); }
.atl__tab[aria-pressed="true"] {
  background: var(--green-900);
  color: var(--cream);
  font-weight: 500;
  box-shadow: var(--shadow-1);
}
.atl__tabn {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  background: rgba(6, 51, 46, 0.1);
  font-size: 11px; font-weight: 600;
}
.atl__tab[aria-pressed="true"] .atl__tabn { background: rgba(255, 255, 255, 0.18); }

/* ---------- grilla de opciones ---------- */
.pick2grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pick2 {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 13px;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 10px 14px 10px 10px;
  transition: border-color 200ms ease, background-color 200ms ease,
    box-shadow 200ms ease, transform 160ms var(--ease-out);
}
.pick2:active { transform: scale(0.99); }
.pick2__ph {
  display: block;
  width: 62px; height: 62px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-100);
}
.pick2__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.pick2__tx { display: block; min-width: 0; }
.pick2__tx b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.2; }
.pick2__tx small { display: block; font-size: 11.5px; color: var(--ink-3); line-height: 1.4; margin-top: 2px; }
.pick2__p { font-size: 13px; font-weight: 600; white-space: nowrap; color: var(--ink-2); }
.pick2.is-on {
  border-color: var(--green-600);
  background: rgba(43, 138, 107, 0.05);
  box-shadow: inset 0 0 0 1px var(--green-600);
}
.pick2.is-on .pick2__p { color: var(--green-700); }
@media (hover: hover) and (pointer: fine) {
  .pick2:hover { border-color: var(--green-600); }
  .pick2:hover .pick2__ph img { transform: scale(1.07); }
}

.atl__hint { font-size: 12.5px; color: var(--ink-3); margin: 16px 0 0; text-align: center; }

/* ---------- acabado ---------- */
.atl__fin { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fin {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: border-color 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out);
}
.fin:active { transform: scale(0.99); }
.fin b { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.fin b i { font-style: normal; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-3); }
.fin small { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.fin em { display: block; font-style: normal; font-size: 11.5px; color: var(--crit); margin-top: 10px; font-weight: 600; }
.fin.is-on { border-color: var(--green-600); background: rgba(43, 138, 107, 0.05); box-shadow: inset 0 0 0 1px var(--green-600); }
.fin.is-off { opacity: 0.5; pointer-events: none; }

/* ---------- extras ---------- */
.atl__ex { display: grid; gap: 8px; }
.ex {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 14px;
  transition: border-color 200ms ease, background-color 200ms ease, transform 160ms var(--ease-out);
}
.ex:active { transform: scale(0.995); }
.ex__k {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  background: var(--cream-2);
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  transition: background-color 200ms ease, color 200ms ease;
}
.ex__p { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.ex.is-on { border-color: var(--green-600); background: rgba(43, 138, 107, 0.05); }
.ex.is-on .ex__k { background: var(--green-600); color: #fff; }
.ex[disabled] { opacity: 0.72; }
.ex[disabled] .ex__k { background: var(--green-100); color: var(--green-700); }

/* ---------- panel lateral ---------- */
.atl__side {
  position: sticky;
  top: 96px;
  background: var(--cream-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 18px;
}
.atl__canvas {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-100);
  display: grid;
  place-items: center;
}
.atl__vase { width: 100%; height: 100%; object-fit: cover; }
.atl__empty { font-size: 13px; color: var(--ink-3); text-align: center; padding: 0 30px; }
.atl__blooms {
  position: absolute;
  left: 12px; bottom: 12px;
  display: flex;
}
.bloom {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 2px solid var(--cream);
  box-shadow: 0 2px 8px rgba(6, 51, 46, 0.22);
  opacity: 0;
  transform: scale(0.85);
  animation: bloomIn 320ms var(--ease-out) forwards;
}
.bloom + .bloom { margin-left: -12px; }
.bloom img { width: 100%; height: 100%; object-fit: cover; }
@keyframes bloomIn { to { opacity: 1; transform: scale(1); } }

.atl__ellie {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--green-600);
  border-radius: var(--r-md);
  padding: 13px 14px;
  margin-top: 14px;
}
.atl__ellie p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--ink-2); }
.atl__av {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  background: var(--gold-600); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 15px; font-weight: 600;
}
.atl__ellie.is-warn { border-left-color: var(--warn); }
.atl__ellie.is-warn .atl__av { background: var(--warn); }
.atl__ellie.is-ok { border-left-color: var(--green-600); }

.atl__break { list-style: none; margin: 16px 0 0; padding: 0; font-size: 12.5px; }
.atl__break li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
}
.atl__break li span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.atl__tot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 14px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.atl__tot b { font-family: var(--serif); font-feature-settings: "lnum" 1; font-size: 30px; font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.atl__fine { font-size: 11px; color: var(--ink-3); text-align: center; margin: 12px 0 0; line-height: 1.5; }

@media (max-width: 1080px) {
  .atl { grid-template-columns: 1fr; }
  .atl__side { position: static; }
  .atl__canvas { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .pick2grid, .atl__fin { grid-template-columns: 1fr; }
  .atl__tab { font-size: 12px; padding: 9px 12px; }
  .atelier .sec__head { align-items: flex-start; }
}

/* ══════════ formulario de eventos ══════════ */
.wedform__tel { margin-top: 14px; }
.wedform__tel a {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 25px; color: var(--green-800); text-decoration: none;
  font-feature-settings: "lnum" 1; border-bottom: 1px solid var(--gold-500);
  transition: color 0.2s var(--ease-out, ease);
}
@media (hover: hover) and (pointer: fine) {
  .wedform__tel a:hover { color: var(--gold-700); }
}

/* rotulo de cada bloque de preguntas */
.fset {
  grid-column: 1 / -1;
  margin: 18px 0 2px; padding-top: 14px;
  border-top: 1px solid var(--green-100);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-700);
}
.wedform__f > .fset:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }

/* casillas */
.chk__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.chk__one  { display: block; }
.chk {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px;                 /* objetivo tactil comodo en telefono */
  font-size: 14px; color: var(--ink); cursor: pointer;
  line-height: 1.35;
}
.chk input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 19px; width: 19px; height: 19px; margin: 0;
  border: 1.5px solid var(--green-600); border-radius: 5px;
  background: var(--paper); cursor: pointer; position: relative;
  transition: background 0.16s var(--ease-out, ease),
              border-color 0.16s var(--ease-out, ease);
}
.chk input:checked { background: var(--green-700); border-color: var(--green-700); }
.chk input:checked::after {
  content: ""; position: absolute; left: 5.5px; top: 2px;
  width: 4px; height: 9px; border: solid #fff;
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.chk input:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.chk:active input { transform: scale(0.97); }

.oculto { display: none; }

.wedform__nota {
  margin-top: 10px; font-size: 12.5px; color: var(--ink-3);
  text-align: center;
}

@media (max-width: 720px) {
  .chk__grid { grid-template-columns: 1fr; gap: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .chk input, .wedform__tel a { transition: none; }
  .chk:active input { transform: none; }
}

/* ══════════ sede fija + enlace a la tienda hermana ══════════ */
.sede { display: inline-flex; align-items: center; gap: 12px; font-size: 11.5px; }
.sede b {
  padding: 4px 12px; border-radius: var(--r-full);
  background: var(--cream); color: var(--green-900);
  font-weight: 600; letter-spacing: 0.03em; white-space: nowrap;
}
.sede a {
  color: rgba(255, 255, 255, 0.72); text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 1px; white-space: nowrap;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .sede a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
}
.sede a:active { transform: scale(0.97); }
@media (max-width: 720px) {
  .sede a { display: none; }   /* en telefono solo la sede actual */
}
@media (prefers-reduced-motion: reduce) {
  .sede a { transition: none; }
  .sede a:active { transform: none; }
}
