:root {
  --ink: #171714;
  --paper: #faf8f2;
  --cream: #f1ede3;
  --line: #d7d1c5;
  --muted: #6f6b63;
  --gold: #9a7a4f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Sora", sans-serif;
}
a { color: inherit; }
.info-announcement {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .04em;
}
.info-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, .96);
}
.info-back { width: max-content; font-size: 11px; text-decoration: none; }
.info-brand { display: grid; justify-items: center; text-decoration: none; }
.info-brand span { font-size: 24px; font-weight: 700; letter-spacing: .18em; }
.info-brand strong { color: var(--gold); font-size: 9px; letter-spacing: .28em; }
.info-contact { justify-self: end; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.info-hero {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 9vw, 140px) 70px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #efe8dc, #faf8f2 72%);
}
.eyebrow { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.info-hero h1 { max-width: 920px; margin: 18px 0; font-size: clamp(42px, 7vw, 86px); line-height: .98; }
.info-hero > p:last-child { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.info-shell { width: min(100% - 40px, 1060px); margin: 0 auto; padding: 70px 0 110px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 22px 24px; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.faq-list summary { cursor: pointer; font-size: 16px; font-weight: 700; }
.faq-list details p { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.info-card { margin-top: 44px; padding: 30px; background: var(--ink); color: #fff; }
.info-card h2 { margin: 0 0 10px; font-size: 26px; }
.info-card p { color: #c9c4ba; line-height: 1.65; }
.info-card a { display: inline-block; margin-top: 8px; padding: 13px 17px; border: 1px solid #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.privacy-section { padding: 32px 0; border-bottom: 1px solid var(--line); }
.privacy-section h2 { margin: 0 0 16px; font-size: clamp(24px, 3vw, 34px); }
.privacy-section p,
.privacy-section li { color: var(--muted); font-size: 13px; line-height: 1.75; }
.privacy-section ul { padding-left: 21px; }
.privacy-note { padding: 18px; border-left: 3px solid var(--gold); background: var(--cream); }
.info-footer { padding: 50px 20px; background: var(--ink); color: #fff; text-align: center; }
.info-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 30px; font-size: 11px; }
.info-socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 0 auto 32px; }
.info-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid #45443f;
  color: #d4d1ca;
  font-size: 10px;
  text-decoration: none;
}
.info-socials a:hover { border-color: #8b877e; color: #fff; }
.info-socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.info-socials a:nth-child(2) svg { fill: currentColor; stroke: none; }
.info-footer small { color: #969187; }
.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px 0 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.whatsapp-float:hover { background: #188748; transform: translateY(-2px); }
.whatsapp-float img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}
.whatsapp-float:focus-visible,
.info-socials a:focus-visible { outline: 3px solid #d6b783; outline-offset: 3px; }
@media (max-width: 680px) {
  .info-header { grid-template-columns: auto 1fr auto; min-height: 72px; padding-inline: 16px; }
  .info-brand span { font-size: 19px; }
  .info-brand strong { font-size: 7px; }
  .info-contact { font-size: 0; }
  .info-contact::after { content: "WhatsApp"; font-size: 9px; }
  .info-back { font-size: 0; }
  .info-back::before { content: "← Volver"; font-size: 10px; }
  .info-hero { padding-inline: 22px; }
  .info-shell { width: min(100% - 32px, 1060px); padding-top: 46px; }
  .faq-list details { padding: 18px; }
  .info-socials { display: grid; grid-template-columns: 1fr; width: min(100%, 300px); }
  .info-socials a { justify-content: center; }
  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-float img { width: 50px; height: 50px; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Acabado editorial v30 */
:root {
  --ink: #171713;
  --paper: #f8f5ef;
  --cream: #eee6d9;
  --line: rgba(62, 52, 39, .16);
  --muted: #716b62;
  --gold: #a9864f;
  --serif: "Cormorant Garamond", Georgia, serif;
}
body { background: radial-gradient(circle at 8% 20%, rgba(169,134,79,.07), transparent 26rem), var(--paper); }
.info-announcement { background: #11110f; letter-spacing: .1em; text-transform: uppercase; }
.info-header {
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248,245,239,.91);
  box-shadow: 0 8px 28px rgba(38,31,22,.04);
  backdrop-filter: blur(16px);
}
.info-brand span { font-size: 20px; letter-spacing: .22em; }
.info-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(169,134,79,.08) 1px, transparent 1px) / 85px 100%,
    linear-gradient(145deg, #eee4d6, #faf8f2 72%);
}
.info-hero::after {
  position: absolute;
  top: -42%;
  right: -12%;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(169,134,79,.2);
  border-radius: 50%;
  content: "";
}
.info-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 108px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .86;
}
.info-hero > p { position: relative; z-index: 1; }
.faq-list details {
  padding: 24px 26px;
  border-radius: 3px;
  background: rgba(255,255,255,.64);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.faq-list details[open] { border-color: rgba(169,134,79,.42); box-shadow: 0 18px 44px rgba(38,31,22,.07); }
.faq-list details:hover { transform: translateY(-1px); }
.faq-list summary { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.info-card { padding: clamp(30px,5vw,54px); background: #171713; }
.info-card h2,
.privacy-section h2 { font-family: var(--serif); font-size: clamp(32px,4vw,48px); font-weight: 600; }
.info-card h2 { color: #f8f5ef; }
.info-card a { transition: background .22s ease, color .22s ease; }
.info-card a:hover { background: #fff; color: var(--ink); }
.privacy-section { padding-block: 40px; }
.info-footer { background: #11110f; }
@media (max-width: 680px) {
  .info-header { min-height: 64px; }
  .info-hero h1 { font-size: clamp(58px,17vw,82px); }
  .faq-list summary { font-size: 20px; }
}
