:root {
  --cream: #f5f1e6;
  --cream-soft: #fffaf0;
  --blue: #153f72;
  --blue-dark: #0d2b52;
  --gold: #e8c97a;
  --gold-dark: #c9a84c;
  --white: #ffffff;
  --blue-line: rgba(21, 63, 114, .18);
  --shadow: 0 24px 70px rgba(21, 63, 114, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--blue); font-family: Inter, system-ui, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1180px, 94%); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid var(--blue-line); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.menu-btn { display: none; background: transparent; border: 0; color: var(--blue); font-size: 1.8rem; cursor: pointer; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
.nav-links a:hover, .nav-links .is-active { opacity: 1; color: var(--blue-dark); }
.nav-cta { background: var(--blue); color: var(--cream) !important; min-width: 170px; height: 48px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; opacity: 1 !important; }

section { position: relative; overflow: hidden; padding: 96px 0; }
.eyebrow { margin-bottom: 14px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 900; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: .96; letter-spacing: -.04em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); max-width: 760px; }
h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
h3 { font-size: 1.8rem; }
.lead { max-width: 650px; margin: 24px 0 32px; font-size: 1.08rem; color: rgba(21, 63, 114, .78); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid currentColor; font-weight: 900; transition: .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--cream); border-color: var(--blue); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--blue); border: 0; }
.btn-cream-outline { color: var(--cream); border-color: rgba(245, 241, 230, .55); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.leidos-hero { background: radial-gradient(circle at 83% 18%, rgba(232,201,122,.28), transparent 28%), var(--cream); }
.leidos-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.month-book-card { background: var(--blue); color: var(--cream); border-radius: 30px; padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.month-book-card .eyebrow { color: var(--gold); }
.month-book-layout { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center; }
.month-book-layout img { width: 150px; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 12px; box-shadow: 0 16px 34px rgba(0,0,0,.28); transform: rotate(-3deg); background: var(--cream-soft); }
.month-book-card h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
.author { margin-top: 8px; font-weight: 800; opacity: .86; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.tags span { border: 1px solid currentColor; border-radius: 999px; padding: 6px 11px; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; opacity: .78; }
.month-heart { position: absolute; right: 24px; bottom: 14px; color: var(--gold); font-size: 3rem; opacity: .45; }
.month-amazon {
  width: fit-content;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue);
}

.decor { position: absolute; color: var(--gold-dark); pointer-events: none; opacity: .45; }
.decor-a { left: 5%; top: 18%; font-size: 2rem; }
.decor-b { right: 6%; top: 14%; font-size: 2.4rem; }
.decor-c { left: 45%; bottom: 12%; font-size: 2.6rem; }

.featured-reading { background: var(--cream-soft); }
.featured-card { display: grid; grid-template-columns: 290px 1fr .95fr; gap: 38px; align-items: center; padding: 38px; border: 1px solid var(--blue-line); border-radius: 34px; background: var(--cream); box-shadow: var(--shadow); }
.featured-cover img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 16px; box-shadow: 0 22px 45px rgba(21,63,114,.22); transform: rotate(-1.5deg); background: var(--cream-soft); }
.featured-info p:not(.eyebrow):not(.author) { max-width: 620px; margin-top: 18px; color: rgba(21, 63, 114, .78); }
.rating-row { display: flex; align-items: center; gap: 14px; margin: 22px 0 0; }
.rating-row strong { font-size: 1.2rem; font-weight: 950; }
.stars { --percent: calc(var(--rating) / 5 * 100%); position: relative; display: inline-block; color: rgba(21,63,114,.18); font-size: 1.35rem; letter-spacing: .06em; line-height: 1; }
.stars::before { content: "★★★★★"; position: absolute; inset: 0; width: var(--percent); overflow: hidden; color: var(--blue); }
.reading-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.amazon-btn, .book-amazon, .month-amazon { min-height: 44px; padding: 0 18px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 950; }
.review-list { display: grid; gap: 14px; }
.review-note { background: var(--white); border: 1px solid rgba(21,63,114,.14); border-radius: 18px; padding: 16px; box-shadow: 0 8px 20px rgba(21,63,114,.07); }
.review-note p { margin-top: 8px; color: var(--blue); font-family: "Cormorant Garamond", serif; font-size: 1.18rem; font-weight: 700; line-height: 1.2; }
.mini-stars { color: var(--blue); letter-spacing: .08em; font-size: .94rem; font-weight: 900; }

.past-section { background: var(--cream); }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2 { margin-inline: auto; }
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.book-card { background: var(--white); border: 1px solid var(--blue-line); border-radius: 26px; padding: 20px; display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: start; box-shadow: 0 14px 34px rgba(21,63,114,.08); }
.book-cover-link img { width: 130px; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 12px; background: var(--cream-soft); box-shadow: 0 12px 25px rgba(21,63,114,.16); }
.book-info h3 { margin-top: 6px; font-size: 2rem; }
.book-info p { color: rgba(21,63,114,.72); font-weight: 700; }
.book-month { color: var(--gold-dark) !important; font-size: .72rem; font-weight: 950 !important; text-transform: uppercase; letter-spacing: .1em; }
.rating-row.small { gap: 10px; margin-top: 12px; }
.rating-row.small .stars { font-size: 1.05rem; }
.rating-row.small strong { font-size: .95rem; }
.book-reviews { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 2px; }
.review-note.compact { padding: 13px; background: var(--cream-soft); }
.review-note.compact p { font-size: 1.05rem; }
.latest-small { border-color: rgba(201,168,76,.7); background: linear-gradient(180deg, var(--white), var(--cream-soft)); }

.how-section { background: var(--cream-soft); padding: 70px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-grid article { text-align: center; padding: 26px; border-right: 1px solid rgba(201,168,76,.42); }
.how-grid article:last-child { border-right: 0; }
.how-grid span { width: 62px; height: 62px; margin: 0 auto 14px; border: 1px solid var(--gold-dark); border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; }
.how-grid h3 { font-size: 1.7rem; }
.how-grid p { margin-top: 8px; color: rgba(21,63,114,.72); }

.final-cta { background: var(--blue); color: var(--cream); padding: 58px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.final-cta h2 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.final-cta p { margin-top: 10px; color: rgba(245,241,230,.82); }

@media (max-width: 1024px) {
  .menu-btn { display: block; }
  .nav-links { position: fixed; left: 0; right: 0; top: 76px; background: var(--cream); border-bottom: 1px solid var(--blue-line); padding: 24px 4%; display: none; flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-cta { min-width: auto; height: auto; padding: 12px 20px; }
  section { padding: 72px 0; }
  .leidos-hero-grid, .featured-card, .final-cta-inner { grid-template-columns: 1fr; }
  .featured-card { padding: 26px; }
  .featured-cover img { max-width: 270px; margin-inline: auto; }
  .books-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid article { border-right: 0; border-bottom: 1px solid rgba(201,168,76,.42); }
  .how-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .nav { height: 70px; }
  .nav-links { top: 70px; }
  .brand span { display: none; }
  section { padding: 54px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .month-book-card { padding: 22px; border-radius: 24px; }
  .month-book-layout { grid-template-columns: 105px 1fr; gap: 16px; }
  .month-book-layout img { width: 105px; }
  .month-book-card h2 { font-size: 2rem; }
  .featured-card { border-radius: 24px; padding: 18px; }
  .book-card { grid-template-columns: 92px 1fr; gap: 14px; padding: 16px; border-radius: 22px; }
  .book-cover-link img { width: 92px; }
  .book-info h3 { font-size: 1.55rem; }
  .book-reviews { grid-template-columns: 1fr; }
  .review-note p { font-size: 1.05rem; }
}

.book-info .book-amazon {
  width: fit-content;
  margin-top: 14px;
}

.latest-small .book-reviews {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .latest-small .book-reviews {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FOOTER NUEVO
   ========================= */

.site-footer {
  background: var(--cream);
  color: var(--blue);
  padding: 72px 0 0;
  border-top: 1px solid rgba(21, 63, 114, .08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .95fr .75fr .75fr .8fr .8fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
  align-items: start;
}

.footer-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.footer-brand-copy {
  display: grid;
  align-content: start;
}

.footer-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: .88;
  letter-spacing: -.04em;
}

.footer-description {
  max-width: 260px;
  margin-top: 10px;
  color: rgba(21, 63, 114, .88);
  font-size: 1.02rem;
  line-height: 1.42;
  font-weight: 600;
}

.footer-heart {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 1.85rem;
  line-height: 1;
}

.footer-quote-wrap {
  min-height: 100%;
  padding: 6px 28px 0 8px;
  border-right: 1px solid rgba(201, 168, 76, .72);
  position: relative;
}

.footer-quote {
  margin: 0;
  color: var(--blue);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-style: italic;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}

.footer-quote-mark {
  display: inline-block;
  margin-top: 10px;
  margin-left: 46px;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.footer-quote-star {
  position: absolute;
  right: 16px;
  bottom: 18px;
  color: var(--gold-dark);
  font-size: 2rem;
  line-height: 1;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col-title {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(21, 63, 114, .92);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  transition: color .18s ease, transform .18s ease;
}

.footer-col a:hover {
  color: var(--blue-dark);
  transform: translateX(2px);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}

.footer-art img {
  width: min(170px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 42px;
  background: var(--blue);
  color: var(--cream);
}

.footer-bottom .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-art {
    justify-content: flex-start;
  }

  .footer-art img {
    width: 150px;
  }
}

@media (max-width: 860px) {
  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-quote-wrap {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 168, 76, .6);
    grid-column: 1 / -1;
  }

  .footer-quote-mark {
    margin-left: 0;
  }

  .footer-quote-star {
    right: 0;
    bottom: 10px;
  }

  .footer-art {
    justify-content: flex-start;
    padding-top: 8px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .footer-logo {
    width: 76px;
    height: 76px;
  }

  .footer-name {
    font-size: 2.25rem;
  }

  .footer-description {
    max-width: none;
    font-size: .98rem;
  }

  .footer-quote {
    font-size: 2.6rem;
    max-width: 300px;
  }

  .footer-quote-star {
    font-size: 1.7rem;
  }

  .footer-col {
    gap: 9px;
  }

  .footer-col a {
    font-size: .98rem;
  }

  .footer-art img {
    width: 138px;
  }

  .footer-bottom .container {
    min-height: 62px;
    padding: 0 12px;
  }

  .footer-bottom p {
    font-size: .92rem;
  }
}

/* =========================
   FOOTER — diseño editorial
   ========================= */

.site-footer {
  background: var(--cream);
  color: var(--blue);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(21, 63, 114, .08);
}

.site-footer .container {
  width: min(1180px, 94%);
  margin-inline: auto;
}

.footer-inner {
  min-height: 178px;
  padding: 20px 0 18px;
  display: grid;
  grid-template-columns: 1.45fr 1.25fr .78fr .78fr .78fr 1.05fr;
  gap: 30px;
  align-items: center;
}

/* Marca */

.footer-brand {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: start;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-name {
  margin: 4px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
}

.footer-description {
  max-width: 220px;
  margin: 0;
  color: rgba(21, 63, 114, .88);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-heart {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

/* Frase */

.footer-quote {
  position: relative;
  min-height: 112px;
  padding: 8px 34px 6px 0;
  border-right: 1px solid rgba(201, 168, 76, .5);
  display: grid;
  align-content: center;
  justify-items: center;
}

.footer-quote p {
  margin: 0;
  color: var(--blue);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-align: center;
}

.footer-line {
  width: 72px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-dark);
  opacity: .7;
  border-radius: 999px;
}

.footer-star {
  position: absolute;
  right: 14px;
  bottom: 32px;
  color: var(--gold-dark);
  font-size: 1.25rem;
}

/* Columnas */

.footer-col {
  display: grid;
  gap: 5px;
  align-self: center;
}

.footer-title {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: none;
  line-height: 1.1;
}

.footer-col a {
  width: fit-content;
  color: rgba(21, 63, 114, .9);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.22;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-col a:hover {
  color: var(--blue-dark);
  transform: translateX(2px);
}

/* Social */

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ilustración */

.footer-art {
  position: relative;
  display: grid;
  place-items: center end;
  align-self: center;
}

.footer-art img {
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.art-star {
  position: absolute;
  color: var(--gold-dark);
  opacity: .8;
  line-height: 1;
}

.art-star-a {
  left: 0;
  top: 28%;
  font-size: 1.2rem;
}

.art-star-b {
  right: 0;
  top: 12%;
  font-size: 1rem;
}

/* Barra inferior */

.footer-bottom {
  min-height: 32px;
  background: var(--blue);
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6px 14px;
}

.footer-bottom p {
  margin: 0;
  color: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive */

@media (max-width: 1024px) {
  .footer-inner {
    min-height: auto;
    padding: 34px 0 30px;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .footer-quote {
    border-right: 0;
    padding-right: 0;
  }

  .footer-art {
    place-items: center start;
  }

  .footer-art img {
    width: 130px;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 26px;
  }

  .footer-brand,
  .footer-quote {
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-template-columns: 72px 1fr;
  }

  .footer-logo {
    width: 72px;
    height: 72px;
  }

  .footer-quote {
    min-height: auto;
    justify-items: start;
    align-content: start;
    border-bottom: 1px solid rgba(201, 168, 76, .45);
    padding: 0 0 22px;
  }

  .footer-quote p {
    text-align: left;
    font-size: 2rem;
  }

  .footer-line {
    margin-left: 0;
  }

  .footer-star {
    right: 12px;
    bottom: 24px;
  }

  .footer-art {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 28px;
  }

  .footer-brand {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .footer-logo {
    width: 64px;
    height: 64px;
  }

  .footer-name {
    font-size: 1.35rem;
  }

  .footer-description {
    max-width: 240px;
    font-size: .8rem;
  }

  .footer-quote p {
    font-size: 1.85rem;
  }

  .footer-title {
    font-size: .76rem;
  }

  .footer-col a {
    font-size: .82rem;
  }

  .footer-art img {
    width: 118px;
  }

  .footer-bottom {
    min-height: 42px;
  }

  .footer-bottom p {
    font-size: .7rem;
  }
}


/* =========================
   AJUSTES FOOTER — DESKTOP + MOBILE
   ========================= */

/* Desktop: más aire entre bloques */
@media (min-width: 1025px) {
  .site-footer .container,
  .footer-inner {
    width: min(1360px, 92%);
  }

  .footer-inner {
    min-height: 230px;
    padding: 34px 0 30px;
    grid-template-columns:
      minmax(250px, 1.15fr)
      minmax(330px, 1.35fr)
      minmax(150px, .72fr)
      minmax(180px, .78fr)
      minmax(160px, .72fr)
      minmax(180px, .75fr);
    column-gap: clamp(44px, 4.2vw, 78px);
    align-items: center;
  }

  .footer-brand {
    grid-template-columns: 92px minmax(170px, 1fr);
    gap: 22px;
  }

  .footer-logo {
    width: 92px;
    height: 92px;
  }

  .footer-name {
    font-size: 1.9rem;
  }

  .footer-description {
    max-width: 245px;
    font-size: .96rem;
    line-height: 1.42;
    font-weight: 500;
  }

  .footer-quote {
    min-height: 126px;
    padding-right: 48px;
  }

  .footer-quote p {
    font-size: clamp(2rem, 2.35vw, 3rem);
  }

  .footer-title {
    margin-bottom: 10px;
    font-size: .84rem;
  }

  .footer-col {
    gap: 8px;
  }

  .footer-col a {
    font-size: .88rem;
    font-weight: 500;
  }

  .footer-art img {
    width: 160px;
  }
}

/* Tablet: evita que se amontone */
@media (min-width: 721px) and (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.15fr 1.15fr .8fr;
    gap: 34px 46px;
  }

  .footer-quote {
    justify-items: start;
  }

  .footer-quote p {
    text-align: left;
  }

  .footer-art {
    display: none;
  }
}

/* Mobile: sin Ayuda, más limpio y menos largo */
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 30px;
  }

  .footer-brand {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: start;
  }

  .footer-logo {
    width: 64px;
    height: 64px;
  }

  .footer-name {
    margin-top: 0;
    font-size: 1.55rem;
    line-height: .95;
  }

  .footer-description {
    max-width: 240px;
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .footer-heart {
    margin-top: 10px;
    font-size: 1.45rem;
  }

  .footer-quote {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 168, 76, .42);
    min-height: auto;
    padding: 2px 0 22px;
    justify-items: start;
  }

  .footer-quote p {
    max-width: 330px;
    text-align: left;
    font-size: 2rem;
    line-height: 1.05;
  }

  .footer-line {
    margin-left: 0;
    width: 76px;
  }

  .footer-star {
    right: 12px;
    bottom: 30px;
  }

  .footer-col[aria-label="Ayuda"] {
    display: none;
  }

  .footer-col {
    gap: 7px;
  }

  .footer-title {
    margin-bottom: 6px;
    font-size: .78rem;
    letter-spacing: .04em;
  }

  .footer-col a {
    font-size: .9rem;
    font-weight: 500;
  }

  .footer-social {
    margin-top: 2px;
  }

  .footer-art {
    display: none;
  }

  .footer-bottom {
    min-height: 42px;
    padding: 7px 14px;
  }

  .footer-bottom p {
    font-size: .72rem;
    line-height: 1.25;
  }
}

/* Móvil muy estrecho */
@media (max-width: 420px) {
  .footer-quote p {
    font-size: 1.75rem;
  }

  .footer-description {
    max-width: 210px;
  }

  .footer-col a {
    font-size: .86rem;
  }
}
