/* ================================
   DON MERCHAND — styles.css
   ================================ */

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

:root {
  --bg:            #080808;
  --bg2:           #0e0e0e;
  --card:          #111111;
  --card2:         #161616;
  --border:        rgba(201,168,76,.18);
  --border-strong: rgba(201,168,76,.38);
  --gold:          #c9a84c;
  --gold-light:    #e8d5a3;
  --gold-dim:      rgba(201,168,76,.55);
  --cream:         #f0ebe0;
  --red:           #7a1a1a;
  --text1:         #f0ebe0;
  --text2:         #b8a98a;
  --text3:         #6b5f4e;
  --wa:            #25D366;
  --font-h:        'Playfair Display', Georgia, serif;
  --font-b:        'Outfit', 'Inter', sans-serif;
  --radius:        3px;
  --shadow:        0 8px 40px rgba(0,0,0,.7);
  --container:     1200px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text1);
  position: relative;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Claim y accesos rápidos del hero */
.hero__claim { font-size: 1rem; line-height: 1.75; color: var(--text2); max-width: 58ch; margin: 22px auto 0; text-wrap: pretty; }
.hero__quick { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; max-width: 760px; margin: 30px auto 34px; }
.hero__quick a { display: flex; flex-direction: column; gap: 3px; padding: 14px 12px; background: rgba(20,20,20,.7); border: 1px solid var(--border); border-radius: 8px; text-align: left; transition: border-color .2s, background .2s; }
.hero__quick a:hover { border-color: var(--gold); background: rgba(28,28,28,.85); }
.hero__quick span { font-size: .88rem; font-weight: 600; color: var(--cream); }
.hero__quick small { font-size: .72rem; color: var(--text3); line-height: 1.35; }
@media (max-width: 760px) { .hero__quick { grid-template-columns: repeat(2, 1fr); } .hero__claim { font-size: .92rem; } }

/* ---- TOP STRIPE ---- */
body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 32px; height: 68px; }

.nav__logo {
  flex-shrink: 0;
  line-height: 1.1;
}
.nav__logo-don {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  display: block;
}
.nav__logo-merchand {
  font-family: var(--font-b);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color .2s;
}
.nav__link:hover, .nav__link--active { color: var(--gold); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius); font-family: var(--font-b); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border: none; transition: all .22s; }
.btn--gold {
  background: var(--gold);
  color: #080808;
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }
.btn--whatsapp { background: var(--wa); color: #fff; }
.btn--whatsapp:hover { background: #1eb855; }
.btn--sm { padding: 7px 16px; font-size: .75rem; }
.btn__icon { width: 16px; height: 16px; flex-shrink: 0; }

.nav__cta { margin-left: 8px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .25s; }

/* Fondo general: la foto de portada, muy tenue */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("img/fondo.jpg") center/cover no-repeat;
  opacity: .3;
  filter: grayscale(.15);
  pointer-events: none;
}
.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(8,8,8,.75) 0%, rgba(8,8,8,.35) 60%, rgba(8,8,8,.8) 100%);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 28px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
/* Foto del equipo (Quiénes somos) */
.team-photo { position: relative; width: 100%; aspect-ratio: 3/2; background: var(--card) url("img/nuestro-equipo.jpg") center/cover no-repeat; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 0 0 40px; }
.team-photo__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 24px 20px; background: linear-gradient(to top, rgba(8,8,8,.9), transparent); font-size: .82rem; color: var(--text2); }
@media (max-width: 700px) { .team-photo { aspect-ratio: 4/3; } }

.hero__frame {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.hero__frame::before, .hero__frame::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--gold-dim);
  border-style: solid;
}
.hero__frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero__frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero__inner { position: relative; max-width: 700px; margin: 0 auto; }
.hero__kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__kicker::before, .hero__kicker::after {
  content: '—';
  margin: 0 10px;
  opacity: .5;
}
.hero__don {
  font-family: var(--font-h);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
}
.hero__merchand {
  font-size: clamp(.85rem, 2.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 6px;
}
.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 16px auto;
  position: relative;
}
.hero__divider::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__tagline {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- ORNAMENT DIVIDER ---- */
.ornament {
  text-align: center;
  padding: 8px 0;
  color: var(--gold-dim);
  font-size: .9rem;
  letter-spacing: .5em;
}

/* ---- SECTION ---- */
.section { padding: 100px 0; }
.section--alt { background: rgba(14,14,14,.82); }
.section__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
}
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

/* ---- STATS BAND ---- */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__number {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat__label { font-size: .8rem; color: var(--text2); letter-spacing: .06em; margin-top: 6px; }

/* ---- CATEGORY GRID ---- */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.cat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.cat-card__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.cat-card__count { font-size: .78rem; color: var(--text3); letter-spacing: .05em; }
.cat-card__arrow {
  display: block;
  margin: 14px auto 0;
  font-size: .75rem;
  color: var(--gold-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.cat-card:hover .cat-card__arrow { color: var(--gold); }

/* ---- PROCESS STEPS ---- */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(33.33% + 20px); right: calc(33.33% + 20px);
  height: 1px;
  background: var(--border-strong);
}
.process-step { text-align: center; }
.process-step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--gold);
  position: relative;
  background: var(--bg);
}
.process-step__title { font-family: var(--font-h); font-size: 1.15rem; color: var(--cream); margin-bottom: 10px; }
.process-step__text { font-size: .9rem; color: var(--text2); line-height: 1.7; }

/* ---- BRANDS ---- */
.brands-grid { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.brand-badge {
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--text2);
  letter-spacing: .05em;
  transition: all .2s;
}
.brand-badge:hover { border-color: var(--border-strong); color: var(--gold); }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-family: var(--font-h); font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--cream); margin-bottom: 12px; }
.cta-band p { color: var(--text2); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__kicker { font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-hero__title { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--cream); line-height: 1.15; margin-bottom: 14px; }
.page-hero__sub { font-size: 1.05rem; color: var(--text2); max-width: 500px; margin: 0 auto; }

/* ---- CATALOG FILTERS ---- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text2);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn--active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.07);
}

/* ---- PRODUCT GRID ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; }
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.product-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card__img {
  height: 200px;
  background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.product-card__body { padding: 18px; }
.product-card__cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 6px; }
.product-card__name { font-family: var(--font-h); font-size: 1rem; color: var(--cream); margin-bottom: 6px; }
.product-card__ref { font-size: .78rem; color: var(--text3); margin-bottom: 14px; }
.product-card__footer { display: flex; gap: 8px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-info__item { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text3); }
.contact-info__value { font-size: .95rem; color: var(--text1); }
.contact-info__value a { color: var(--gold); transition: opacity .2s; }
.contact-info__value a:hover { opacity: .75; }

/* ---- FORM ---- */
.form h3 { font-family: var(--font-h); font-size: 1.3rem; color: var(--cream); margin-bottom: 24px; }
.form label { display: block; font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text1);
  font-family: var(--font-b);
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form textarea { min-height: 110px; resize: vertical; }
.form__row { margin-bottom: 18px; }
.form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--split > div { margin-bottom: 0; }
.form input::placeholder, .form textarea::placeholder { color: var(--text3); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand-don { font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--cream); line-height: 1; }
.footer__brand-merchand { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: 2px; display: block; }
.footer__tag { font-size: .88rem; color: var(--text3); margin-top: 14px; line-height: 1.6; max-width: 220px; }
.footer__ig { display: inline-block; margin-top: 12px; font-size: .8rem; color: var(--gold-dim); letter-spacing: .05em; transition: color .2s; }
.footer__ig:hover { color: var(--gold); }
.site-footer h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text3); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: .88rem; color: var(--text2); transition: color .2s; }
.site-footer ul a:hover { color: var(--gold); }
.site-footer address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
.site-footer address a { font-size: .88rem; color: var(--text2); transition: color .2s; }
.site-footer address a:hover { color: var(--gold); }
.footer__legal {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a { color: var(--text3); transition: color .2s; }
.footer__legal-links a:hover { color: var(--gold); }

/* ---- FLOATING WA BUTTON ---- */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ---- CONTENT SECTION ---- */
.content-section { padding: 80px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 0; position: fixed; top: 71px; left: 0; right: 0; background: rgba(8,8,8,.97); border-bottom: 1px solid var(--border); padding: 16px 0; }
  .nav__links--open { display: flex; }
  .nav__link { padding: 12px 28px; width: 100%; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .form__row--split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__frame { inset: 14px; }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .hero__ctas { flex-direction: column; align-items: center; }
}


/* ---- FOTOS EN TARJETAS DE CATEGORÍA (home) ---- */
.cat-card__photo { position: relative; width: 100%; height: 190px; background: #f1f1f1; border-radius: 6px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cat-card__photo::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: linear-gradient(to bottom, rgba(241,241,241,0) 0%, rgba(241,241,241,.5) 45%, var(--card) 100%); pointer-events: none; z-index: 2; }
.cat-card__blur { position: absolute; inset: -14px; background-size: cover; background-position: center; filter: blur(18px) saturate(.6); transform: scale(1.15); z-index: 0; }
.cat-card__photo img { position: relative; z-index: 1; }
.cat-card__photo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .35s; }
.cat-card:hover .cat-card__photo img { transform: scale(1.05); }

/* ---- BANDA DE IMÁGENES ---- */
.photo-strip { overflow: hidden; background: var(--border); }
.photo-strip__track { display: flex; width: max-content; animation: strip-scroll 70s linear infinite; }
.photo-strip:hover .photo-strip__track { animation-play-state: paused; }
.photo-strip__item { flex: 0 0 20vw; aspect-ratio: 1; background: #f4f4f4; display: flex; align-items: center; justify-content: center; overflow: hidden; border-right: 2px solid var(--border); }
.photo-strip__item img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .4s; }
.photo-strip__item:hover img { transform: scale(1.06); }
@keyframes strip-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (max-width: 900px) { .photo-strip__item { flex: 0 0 33.333vw; } }
@media (prefers-reduced-motion: reduce) { .photo-strip__track { animation: none; } }

/* ---- PROYECTOS A MEDIDA ---- */
.custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.custom-card { background: var(--card); border: 1px solid var(--border); padding: 32px 28px; }
.custom-card__num { font-family: var(--font-h); font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; }
.custom-card__title { font-family: var(--font-h); font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; }
.custom-card__text { font-size: .9rem; color: var(--text2); line-height: 1.7; }
.custom-lead { max-width: 720px; margin: 0 auto 48px; text-align: center; font-size: 1.05rem; color: var(--text2); line-height: 1.8; }
.custom-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.custom-chip { border: 1px solid var(--border); border-radius: 40px; padding: 9px 20px; font-size: .82rem; color: var(--text2); letter-spacing: .04em; }
@media (max-width: 900px) { .custom-grid { grid-template-columns: 1fr; } }

/* ---- SEO / accesibilidad ---- */
.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; }

/* ---- BLOQUE SEO ---- */
.seo-block { max-width: 900px; margin: 0 auto; }
.seo-block h2 { font-family: var(--font-h); font-size: clamp(1.4rem,3vw,2rem); color: var(--cream); margin-bottom: 18px; }
.seo-block h3 { font-family: var(--font-h); font-size: 1.05rem; color: var(--gold); margin: 28px 0 10px; }
.seo-block p { font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.seo-block a { color: var(--gold); }
.seo-block ul { margin: 0 0 16px 20px; }
.seo-block li { font-size: .95rem; color: var(--text2); line-height: 1.8; }
.cat-card__photo--cover img { object-fit: contain; padding: 0; background: transparent; }
