/* ── FUENTES LOCALES ───────────────────────────────────────────
   Descargá los .woff2 desde https://gwfh.madebyevan.com/fonts
   y poné los archivos en la carpeta /fonts/ del proyecto.
   Si no los tenés aún, las fuentes caen al fallback del sistema
   (Georgia y system-ui) sin romper el diseño.
   ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ============================================================
   AndaLatam — main.css
   Sistema de diseño central. Todos los HTMLs lo importan.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button, input { font-family: inherit; }

/* ── DESIGN TOKENS ── */
:root {
  --sand:    #F5EFE0;
  --sand2:   #EDE4CE;
  --earth:   #2C1A0E;
  --earth2:  #5C3D20;
  --accent:  #D4522A;
  --accent2: #F0823A;
  --green:   #2A5C3A;
  --cream:   #FDFAF4;
  --text:    #1A1008;
  --muted:   #7A6A55;
  --border:  rgba(44,26,14,0.12);
  --ff-head: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(44,26,14,0.08);
  --shadow-md: 0 8px 24px rgba(44,26,14,0.10);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

/* -- NAVBAR -- */
#navbar {
    transition: transform 0.3s ease;
}

#navbar.navbar-hidden {
    transform: translateY(-100%);
}

/* ── BASE ── */
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

/* ── TIPOGRAFÍA ── */
h1,h2,h3,h4 {
  font-family: var(--ff-head);
  color: var(--earth);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem;
  color: var(--earth); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--earth2);
  font-size: 0.9rem; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--earth); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.75rem 5%; font-size: 0.8rem; color: var(--muted);
  border-bottom: 1px solid var(--border); background: var(--sand);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── SECTION HELPERS ── */
.section { padding: 5rem 5%; }
.section--sand { background: var(--sand); }
.section--earth { background: var(--earth); }
.section-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--ff-head); font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 700; color: var(--earth); margin-bottom: 0.5rem;
}
.section-sub { color: var(--muted); max-width: 520px; }
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.see-all { color: var(--accent); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.see-all:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; font-weight: 500; transition: all .2s; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.8rem 1.8rem; border-radius: var(--radius-pill); font-size: 0.95rem;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--border); color: var(--earth2);
  padding: 0.8rem 1.8rem; border-radius: var(--radius-pill); font-size: 0.95rem;
  background: rgba(253,250,244,0.8);
}
.btn-outline:hover { border-color: var(--earth2); color: var(--earth); }

/* ── BADGES ── */
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 4px 12px;
  border-radius: var(--radius-pill); text-transform: uppercase;
}
.badge--country { background: var(--accent); color: #fff; }
.badge--days { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.3); }
.badge--tag { background: rgba(212,82,42,0.8); color: #fff; }

/* ── AD PLACEHOLDER ── */
.ad-wrap { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.ad-placeholder {
  background: var(--sand); border: 1.5px dashed var(--sand2);
  border-radius: var(--radius-lg);
  padding: 1rem; width: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  color: var(--muted); font-size: 0.75rem;
}
.ad-label {
  font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem; display: block;
}
.ad--leaderboard .ad-placeholder { min-height: 100px; }
.ad--rectangle .ad-placeholder { min-height: 250px; }
.ad--halfpage .ad-placeholder { min-height: 280px; }
.ad--inarticle .ad-placeholder { min-height: 90px; }
.ad-section { padding: 0.75rem 5%; }

/* ── DESTINATION CARDS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dest-card {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: var(--earth); aspect-ratio: 4/3;
  text-decoration: none; display: block;
  transition: transform .3s, box-shadow .3s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; opacity: .88; }
.dest-card:hover .dest-card__img { transform: scale(1.04); opacity: .72; }
.dest-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top,rgba(20,10,0,.85) 0%,transparent 100%);
}
.dest-card__country { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 3px; }
.dest-card__city { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.1; }
.dest-card--featured { grid-column: span 2; aspect-ratio: 16/7; }

/* ── ARTICLE CARDS ── */
.art-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2rem; }
.art-card { text-decoration: none; color: inherit; display: block; }
.art-card:hover .art-card__title { color: var(--accent); }
.art-card__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 1rem; }
.art-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .art-card__img img { transform: scale(1.04); }
.art-card__cat { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.4rem; }
.art-card__title { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 600; color: var(--earth); margin-bottom: 0.5rem; line-height: 1.25; transition: color .2s; }
.art-card__meta { font-size: 0.8rem; color: var(--muted); }

/* ── PAISES GRID ── */
.paises-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; }
.pais-card {
  background: var(--sand); border-radius: var(--radius-lg); padding: 1.25rem;
  text-align: center; text-decoration: none; color: var(--earth);
  transition: all .2s; border: 1px solid transparent;
}
.pais-card:hover { background: var(--sand2); border-color: var(--border); transform: translateY(-2px); }
.pais-card__flag { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.pais-card__name { font-size: 0.9rem; font-weight: 500; }
.pais-card__count { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── NEWSLETTER BAND ── */
.newsletter {
  background: var(--earth); padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.newsletter__title { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--sand); line-height: 1.15; margin-bottom: 0.75rem; }
.newsletter__sub { color: rgba(245,239,224,.6); font-size: 0.95rem; }
.newsletter__form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 0.75rem 1.1rem; border-radius: var(--radius-pill);
  font-size: 0.95rem; outline: none; font-family: var(--ff-body);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter__form input:focus { border-color: var(--accent2); }
.newsletter__form button {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.9rem; font-family: var(--ff-body); transition: background .2s;
}
.newsletter__form button:hover { background: var(--accent2); }
.newsletter__legal { font-size: 0.75rem; color: rgba(245,239,224,.4); margin-top: 0.75rem; }

/* ── FOOTER ── */
.footer {
  background: var(--earth); color: rgba(245,239,224,.6);
  padding: 3rem 5% 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--sand); margin-bottom: 0.75rem; }
.footer__brand span { color: var(--accent2); }
.footer__desc { font-size: 0.85rem; line-height: 1.7; }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { color: rgba(245,239,224,.55); font-size: 0.85rem; text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: var(--sand); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; }

/* ── ARTICLE SPECIFIC ── */
.article-hero { position: relative; height: 62vh; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.article-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(20,10,0,.88) 0%,rgba(20,10,0,.3) 55%,transparent 100%); }
.article-hero__text { position:relative; z-index:2; padding:2rem 5% 3.5rem; max-width:900px; }
.article-hero__badges { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:1rem; }
.article-hero h1 { font-family:var(--ff-head); font-size:clamp(1.9rem,4vw,3.2rem); font-weight:800; color:#fff; line-height:1.1; margin-bottom:1rem; }
.article-meta-row { display:flex; gap:1.5rem; flex-wrap:wrap; }
.article-meta-item { font-size:0.82rem; color:rgba(255,255,255,.7); }

.article-wrap { display:grid; grid-template-columns:1fr 320px; gap:3.5rem; max-width:1400px; margin:0 auto; padding:3rem 5%; }
.article-body { min-width:0; }
.article-body h2 { font-size:1.7rem; font-weight:700; margin:2.5rem 0 .75rem; }
.article-body h3 { font-size:1.2rem; font-weight:600; margin:2rem 0 .5rem; }
.article-body p { color:var(--text); }
.article-body ul,.article-body ol { padding-left:1.5rem; margin-bottom:1.25rem; display:flex; flex-direction:column; gap:.5rem; }
.article-body a { text-decoration:underline; text-decoration-thickness:1px; }
.article-body strong { font-weight:500; color:var(--earth); }

.toc { background:var(--sand); border-radius:var(--radius-lg); padding:1.25rem 1.5rem; margin-bottom:2.5rem; border:1px solid var(--border); }
.toc__title { font-weight:500; color:var(--earth); margin-bottom:.75rem; font-size:.9rem; }
.toc ol { padding-left:1.25rem; display:flex; flex-direction:column; gap:.35rem; }
.toc a { color:var(--earth2); font-size:.85rem; text-decoration:none; }
.toc a:hover { color:var(--accent); text-decoration:underline; }

.info-box { background:var(--sand); border-left:3px solid var(--accent); border-radius:0 var(--radius-lg) var(--radius-lg) 0; padding:1.25rem 1.5rem; margin:2rem 0; }
.info-box__title { font-weight:500; color:var(--earth); margin-bottom:.75rem; font-size:.95rem; }
.info-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.info-item__label { color:var(--muted); font-size:.75rem; display:block; }
.info-item__value { color:var(--earth); font-weight:500; font-size:.85rem; }

.day-block { border:1px solid var(--border); border-radius:var(--radius-xl); overflow:hidden; margin:2rem 0; }
.day-block__header { background:var(--earth); padding:1rem 1.5rem; display:flex; align-items:center; gap:1rem; }
.day-block__num { background:var(--accent); color:#fff; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--ff-head); font-size:1.1rem; font-weight:700; flex-shrink:0; }
.day-block__header h3 { font-family:var(--ff-head); font-size:1.1rem; font-weight:600; color:#fff; margin:0; }
.day-block__header p { font-size:.8rem; color:rgba(255,255,255,.6); margin:0; }
.day-block__content { padding:1.25rem 1.5rem; background:var(--cream); }
.day-block__content p { font-size:.95rem; }
.activities { display:flex; flex-direction:column; gap:.75rem; margin-top:.75rem; }
.activity { display:flex; gap:.75rem; align-items:flex-start; padding:.75rem; background:var(--sand); border-radius:var(--radius-md); }
.activity__time { font-size:.75rem; color:var(--muted); min-width:64px; padding-top:2px; font-weight:500; }
.activity__title { font-size:.9rem; font-weight:500; color:var(--earth); display:block; margin-bottom:1px; }
.activity__desc { font-size:.9rem; color:var(--earth2); }

.cost-table { width:100%; border-collapse:collapse; margin:1rem 0; font-size:.9rem; }
.cost-table th { background:var(--earth); color:var(--sand); padding:.75rem 1rem; text-align:left; font-weight:500; font-size:.8rem; }
.cost-table td { padding:.7rem 1rem; border-bottom:1px solid var(--border); }
.cost-table tr:last-child td { border-bottom:none; }
.cost-table tr:nth-child(even) td { background:var(--sand); }
.cost-table .total td { background:var(--accent); color:#fff; font-weight:500; }

.tip-box { background:#EAF5EC; border-left:3px solid var(--green); border-radius:0 var(--radius-lg) var(--radius-lg) 0; padding:1rem 1.25rem; margin:1.5rem 0; font-size:.9rem; }
.tip-box strong { color:var(--green); }
.highlight-box { background:var(--earth); color:var(--sand); border-radius:var(--radius-xl); padding:1.5rem; margin:2rem 0; }
.highlight-box h3 { font-family:var(--ff-head); font-size:1.2rem; font-weight:600; color:#fff; margin-bottom:.75rem; }
.highlight-box p { font-size:.9rem; color:rgba(245,239,224,.8); }

.img-pair { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; margin:1.5rem 0; }
.img-pair img { width:100%; border-radius:var(--radius-md); height:200px; object-fit:cover; }

.rating-row { display:flex; align-items:center; justify-content:space-between; margin-bottom:.5rem; font-size:.85rem; }
.rating-label { color:var(--earth2); }
.rating-bar { height:5px; border-radius:3px; background:var(--sand2); flex:1; margin:0 .75rem; overflow:hidden; }
.rating-fill { height:100%; background:var(--accent); border-radius:3px; }
.rating-note { color:var(--muted); min-width:32px; text-align:right; }

/* ── SIDEBAR ── */
.sidebar { display:flex; flex-direction:column; gap:1.5rem; }
.sidebar-widget { background:var(--sand); border-radius:var(--radius-lg); padding:1.25rem; border:1px solid var(--border); }
.sidebar-widget h4 { font-family:var(--ff-head); font-size:1rem; font-weight:600; color:var(--earth); margin-bottom:1rem; }
.sidebar-links { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.sidebar-links a { color:var(--earth2); font-size:.85rem; text-decoration:none; display:flex; justify-content:space-between; align-items:center; }
.sidebar-links a:hover { color:var(--accent); }
.sidebar-links span { color:var(--muted); }
.sidebar-meta { display:flex; flex-direction:column; gap:.6rem; }
.sidebar-meta__row { display:flex; justify-content:space-between; font-size:.85rem; padding-bottom:.6rem; border-bottom:1px solid var(--border); }
.sidebar-meta__row:last-child { border-bottom:none; padding-bottom:0; }
.sidebar-meta__label { color:var(--muted); }
.sidebar-meta__value { font-weight:500; color:var(--earth); }
.sidebar-cta { background:var(--accent); border-radius:var(--radius-lg); padding:1.5rem; text-align:center; }
.sidebar-cta__title { font-family:var(--ff-head); font-size:1.1rem; font-weight:700; color:#fff; margin-bottom:.5rem; }
.sidebar-cta__sub { font-size:.85rem; color:rgba(255,255,255,.85); margin-bottom:1rem; }
.sidebar-cta__btn { display:inline-block; background:#fff; color:var(--accent); padding:.6rem 1.4rem; border-radius:var(--radius-pill); font-weight:500; font-size:.85rem; text-decoration:none; }

/* ── RELATED ── */
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.related-card { text-decoration:none; color:inherit; }
.related-card:hover .related-card__title { color:var(--accent); }
.related-card__img { border-radius:var(--radius-md); overflow:hidden; aspect-ratio:16/9; margin-bottom:.75rem; }
.related-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.related-card:hover .related-card__img img { transform:scale(1.04); }
.related-card__cat { font-size:.72rem; color:var(--accent); font-weight:500; text-transform:uppercase; letter-spacing:.06em; margin-bottom:3px; }
.related-card__title { font-family:var(--ff-head); font-size:1rem; font-weight:600; color:var(--earth); line-height:1.25; transition:color .2s; }

/* ── HERO HOME ── */
.hero {
  min-height: 90vh; display:flex; align-items:center;
  padding:6rem 5% 5rem;
  background: radial-gradient(ellipse 70% 60% at 80% 50%,rgba(212,82,42,.08) 0%,transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 80%,rgba(42,92,58,.07) 0%,transparent 60%),
              var(--cream);
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; right:-5%; top:10%;
  width:55%; height:80%;
  background:url('../img/hero-home.svg') center/cover;
  border-radius:24px 0 0 24px; opacity:.85;
}
.hero__content { position:relative; z-index:2; max-width:520px; }
.hero__eyebrow {
  display:inline-block; background:var(--sand); color:var(--accent);
  font-size:.8rem; font-weight:500; letter-spacing:.08em;
  padding:.3rem .9rem; border-radius:var(--radius-pill); margin-bottom:1.5rem;
  text-transform:uppercase;
}
.hero h1 { font-family:var(--ff-head); font-size:clamp(2.8rem,5vw,4.5rem); font-weight:800; line-height:1.05; letter-spacing:-.03em; color:var(--earth); margin-bottom:1.25rem; }
.hero h1 em { font-style:italic; color:var(--accent); }
.hero__sub { font-size:1.05rem; color:var(--earth2); margin-bottom:2rem; max-width:420px; }
.hero__btns { display:flex; gap:1rem; flex-wrap:wrap; }
.hero__stats { display:flex; gap:2rem; margin-top:3rem; padding-top:2rem; border-top:1px solid var(--border); }
.stat__num { font-family:var(--ff-head); font-size:1.8rem; font-weight:600; color:var(--earth); display:block; }
.stat__label { font-size:.8rem; color:var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-wrap { grid-template-columns:1fr; }
  .newsletter { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .dest-card--featured { grid-column:span 1; aspect-ratio:4/3; }
}
@media (max-width: 700px) {
  .nav-links { display:none; }
  .hero::before { display:none; }
  .hero h1 { font-size:2.5rem; }
  .hero__stats { gap:1.25rem; }
  .related-grid { grid-template-columns:1fr; }
  .img-pair { grid-template-columns:1fr; }
  .info-grid { grid-template-columns:1fr; }
}
@media (max-width: 480px) {
  .section { padding:3.5rem 4%; }
  .footer__grid { grid-template-columns:1fr; }
}

/* ── OPTIMIZACIONES DE PERFORMANCE ────────────────────────────── */

/* Evitar repaints innecesarios en hover de cards */
.dest-card, .art-card, .related-card, .dest-mini, .pais-card {
  will-change: transform;
  contain: layout style;
}

/* Suavizar scroll en todo el sitio */
* { scroll-behavior: smooth; }

/* Reducir trabajo del navegador en imágenes */
img {
  content-visibility: auto;
  decoding: async;
}

/* Evitar layout shift en imágenes sin dimensiones */
.dest-card__img, .art-card__img img, .related-card__img img,
.article-hero__img, .dest-mini__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nav: forzar compositing layer para sticky sin jank */
.nav {
  will-change: transform;
  transform: translateZ(0);
}

/* Reading progress bar: solo compositing, sin layout */
#reading-progress {
  will-change: width;
  transform: translateZ(0);
}
