/* ============================================================
   Muebles LOA — Sistema de diseño
   Estética: museística-artesanal, elegancia patrimonial
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:     #1F1A14;
  --ink-2:   #3A2F22;
  --bg:      #F6F1E7;
  --bg-alt:  #EDE4D2;
  --bg-card: #FFFBF2;
  --gold:    #B08A3E;
  --gold-2:  #8E6E2C;
  --bronze:  #6B4A2B;
  --wine:    #6E1F2A;
  --wine-2:  #571720;
  --muted:   #8A7E68;
  --line:    #D9CDB4;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(31,26,20,.06), 0 1px 3px rgba(31,26,20,.08);
  --shadow:    0 4px 14px rgba(31,26,20,.10);
  --shadow-lg: 0 18px 50px rgba(31,26,20,.18);

  --container: 1200px;
  --header-h:  72px;

  --t-fast: 150ms ease;
  --t:      250ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bronze); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8em;
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--alt { background: var(--bg-alt); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section__head p { color: var(--muted); font-size: 1.05rem; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 64px auto;
  max-width: 480px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  letter-spacing: -.04em;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--whatsapp);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.nav__cta svg { width: 18px; height: 18px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--t), background var(--t);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 22px; height: 2px;
  background: var(--ink);
  transition: transform var(--t);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform var(--t);
    box-shadow: var(--shadow-lg);
  }
  .nav__links[data-open="true"] { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__links a { display: block; padding: 16px 0; font-size: 1.1rem; }
  .nav__links a::after { display: none; }
  .nav__links .nav__cta { margin-top: 12px; justify-content: center; }
  .nav__toggle { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--primary {
  background: var(--wine);
  color: #FFF8E7 !important;
}
.btn--primary:hover { background: var(--wine-2); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: white !important;
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg) !important; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #FFF8E7 !important;
}

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 720px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #FFF8E7;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,20,.55), rgba(31,26,20,.75)),
    url("../img/hero.jpg") center / cover no-repeat,
    url("../../images/RE1.jpg") center / cover no-repeat;
  z-index: -1;
  filter: saturate(.9);
}
.hero__inner {
  max-width: 820px;
  padding: 80px 24px;
}
.hero h1 {
  color: #FFF8E7;
  font-weight: 600;
  margin-bottom: .4em;
}
.hero p {
  font-size: clamp(1.05rem, 1vw + .8rem, 1.3rem);
  color: rgba(255, 248, 231, .92);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero__eyebrow {
  color: var(--gold);
  letter-spacing: .25em;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 248, 231, .7);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 28px;
  background: rgba(255, 248, 231, .5);
  margin: 8px auto 0;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ---------- Categorías destacadas ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.cat {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.cat:hover .cat__img { transform: scale(1.06); }
.cat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,26,20,.85) 100%);
}
.cat__label {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 1;
}
.cat__count {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ---------- Filtros (chips) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg-card);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.chip:hover { border-color: var(--gold); color: var(--gold-2); }
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ---------- Grid de productos ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.card:hover .card__media img { transform: scale(1.05); }
.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255, 248, 231, .95);
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}
.card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.card__desc {
  font-size: .92rem;
  color: var(--muted);
  margin: 0 0 14px;
  flex: 1;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine);
}
.price--ask {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: .05em;
}
.card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: .04em;
}
.card__link::after {
  content: " →";
  transition: margin-left var(--t-fast);
  display: inline-block;
}
.card:hover .card__link::after { margin-left: 4px; }

.empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* ---------- Página de producto ---------- */
.breadcrumbs {
  font-size: .85rem;
  color: var(--muted);
  margin: 24px 0 0;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 .4em; }

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 32px 0 64px;
}
@media (min-width: 900px) {
  .product { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}

.gallery__main {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 248, 231, .9);
  color: var(--ink);
  display: grid;
  place-items: center;
  pointer-events: none;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb[aria-current="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(176, 138, 62, .25);
}

.product__head { margin-bottom: 24px; }
.product__cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product__title {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 16px;
}
.product__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 8px;
}
.product__price small { font-size: .8rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.product__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 24px 0;
}

.specs {
  margin: 24px 0 32px;
  padding: 22px 26px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.specs dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2px;
}
.specs dd {
  margin: 0 0 8px;
  font-size: .98rem;
  color: var(--ink);
}

.product__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .product__actions { flex-direction: row; flex-wrap: wrap; }
  .product__actions .btn { flex: 1; min-width: 200px; }
}

.related {
  padding: 64px 0 96px;
  background: var(--bg-alt);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0;
  font-weight: 600;
  color: var(--bronze);
}

/* ---------- Cómo comprar (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  position: relative;
}
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Sobre nosotros (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--reverse > :first-child { order: 2; }
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body p { font-size: 1.05rem; color: var(--ink-2); }

/* ---------- Formulario ---------- */
.form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 138, 62, .18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__error {
  font-size: .82rem;
  color: var(--wine);
  margin: 6px 0 0;
  min-height: 1em;
}
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(110, 31, 42, .5);
}

/* ---------- FAB WhatsApp ---------- */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  z-index: 40;
  transition: transform var(--t), box-shadow var(--t);
}
.fab:hover {
  color: white;
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .55);
}
.fab svg { width: 30px; height: 30px; }
.fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: fabPulse 2.2s infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 248, 231, .14);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 248, 231, .25);
  transition: background var(--t-fast);
}
.lightbox__btn:hover { background: rgba(255, 248, 231, .26); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 248, 231, .8);
  font-size: .9rem;
  letter-spacing: .15em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 248, 231, .82);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.site-footer h4 {
  color: #FFF8E7;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255, 248, 231, .82); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__brand .brand__name { color: #FFF8E7; }
.footer__brand .brand__tag  { color: rgba(255, 248, 231, .55); }
.footer__about { color: rgba(255, 248, 231, .65); max-width: 380px; line-height: 1.7; font-size: .94rem; }

.footer-base {
  border-top: 1px solid rgba(255, 248, 231, .12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 248, 231, .55);
}

/* ---------- Utilidades ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
