/* ==========================================================
   VELAGRAF · SPA editorial de afiliación
   Mobile-first · HTML/CSS/JavaScript nativo
   ========================================================== */

:root {
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", var(--font-body);
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --surface-strong: #e3ece7;
  --text: #17211d;
  --text-soft: #5e6d66;
  --muted: #829087;
  --line: #dce4df;
  --brand: #14B8A6;
  --brand-dark: #0D1B2A;
  --brand-soft: #DDF7EE;
  --accent: #22C55E;
  --accent-soft: #E2F8E9;
  --warning: #986b00;
  --danger: #b43a3a;
  --shadow-sm: 0 8px 28px rgb(22 55 43 / 7%);
  --shadow-md: 0 18px 55px rgb(22 55 43 / 12%);
  --shadow-lg: 0 35px 85px rgb(17 57 42 / 17%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 72px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #101613;
  --surface: #18211d;
  --surface-soft: #1d2924;
  --surface-strong: #23332c;
  --text: #eff7f2;
  --text-soft: #b2c0b8;
  --muted: #84958c;
  --line: #2c3c35;
  --brand: #5bc49d;
  --brand-dark: #79d6b4;
  --brand-soft: #193f31;
  --accent: #f09a72;
  --accent-soft: #462a20;
  --warning: #f1c75b;
  --shadow-sm: 0 8px 28px rgb(0 0 0 / 18%);
  --shadow-md: 0 18px 55px rgb(0 0 0 / 28%);
  --shadow-lg: 0 35px 85px rgb(0 0 0 / 38%);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 55px); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; transition: background-color .25s ease, color .25s ease; }
body.menu-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 60%, transparent); outline-offset: 3px; }
::selection { background: var(--brand); color: #fff; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 15px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 700; text-decoration: none; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 76px 0; }
.section-soft { background: var(--surface-soft); }

h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 10vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 7vw, 3.55rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 800; }
p { margin: 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow-light { color: #b9efdc; }
.section-heading { display: grid; gap: 18px; margin-bottom: 34px; }
.section-heading > p { max-width: 570px; color: var(--text-soft); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 25%, transparent); }
.button-primary:hover { background: var(--brand-dark); box-shadow: 0 16px 34px color-mix(in srgb, var(--brand) 30%, transparent); }
.button-secondary { background: var(--surface); border-color: var(--line); color: var(--text); }
.button-secondary:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-sm); }
.button-light { background: #fff; color: #0D1B2A; }
.button-light:hover { box-shadow: 0 14px 30px rgb(0 0 0 / 18%); }
.button-small { min-height: 40px; padding-inline: 15px; font-size: .88rem; }
.button[disabled] { opacity: .62; cursor: not-allowed; transform: none; box-shadow: none; }
.text-button, .text-link { padding: 0; border: 0; background: transparent; color: var(--brand); font-weight: 800; cursor: pointer; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--brand) 30%, transparent); text-underline-offset: 4px; }
.text-button:hover, .text-link:hover { text-decoration-color: currentColor; }
.text-button.danger { color: var(--danger); }

/* Affiliate notice */
.affiliate-bar { position: relative; z-index: 1002; background: #0D1B2A; color: #fff; }
.affiliate-bar__inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 8px; font-size: .72rem; text-align: center; }
.affiliate-bar__inner p { line-height: 1.35; }
.affiliate-bar__inner .text-button { flex: 0 0 auto; color: #fff; font-size: .72rem; }

/* Navbar */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-height); background: color-mix(in srgb, var(--bg) 88%, transparent); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: background-color .25s, border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { background: color-mix(in srgb, var(--surface) 92%, transparent); border-color: var(--line); box-shadow: 0 10px 40px rgb(20 56 43 / 8%); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.brand img { width: 40px; height: 40px; flex: 0 0 auto; }
.brand span { min-width: 0; display: grid; }
.brand strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; letter-spacing: .02em; color: var(--brand-dark); }
.brand small { display: none; color: var(--text-soft); font-size: .63rem; white-space: nowrap; }
.main-nav { position: fixed; inset: calc(42px + var(--header-height)) 0 auto; display: grid; gap: 0; padding: 16px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .28s ease, opacity .2s ease, visibility .2s; }
.main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.main-nav a { padding: 13px 8px; border-bottom: 1px solid var(--line); color: var(--text-soft); font-weight: 700; text-decoration: none; }
.main-nav a:last-child { border: 0; }
.main-nav a:hover, .main-nav a.is-current { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 5px; }
.icon-button, .menu-toggle { position: relative; width: 43px; height: 43px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); cursor: pointer; transition: border-color .2s, background-color .2s, transform .2s; }
.icon-button:hover, .menu-toggle:hover { border-color: var(--brand); transform: translateY(-1px); }
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-count { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 4px; border: 2px solid var(--surface); border-radius: 99px; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 800; }
.theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: block; }
.menu-toggle { border: 0; background: transparent; }
.menu-toggle span { position: absolute; width: 21px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .2s; }
.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 58px; }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; top: -230px; left: -190px; border-radius: 50%; background: var(--brand-soft); filter: blur(10px); opacity: .6; pointer-events: none; }
.hero-grid { display: grid; gap: 42px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { max-width: 780px; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead { max-width: 680px; margin-top: 22px; color: var(--text-soft); font-size: clamp(1rem, 3vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions .button { flex: 1 1 220px; }
.hero-principles { display: grid; gap: 10px; margin-top: 28px; }
.hero-principles > div { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 15px; background: color-mix(in srgb, var(--surface) 82%, transparent); }
.principle-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--brand-soft); color: var(--brand); font-weight: 800; }
.hero-principles p { display: grid; line-height: 1.35; }
.hero-principles strong { font-size: .88rem; }
.hero-principles small { color: var(--text-soft); font-size: .76rem; }
.hero-image-wrap { position: relative; max-width: 720px; margin-inline: auto; }
.hero-image-wrap > img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-lg); }
.media-badge { position: absolute; display: none; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgb(255 255 255 / 70%); border-radius: 14px; background: rgb(255 255 255 / 88%); color: #173a30; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.media-badge > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: #e4f3ec; color: #0e6b50; font-weight: 800; }
.media-badge div { display: grid; line-height: 1.28; }
.media-badge strong { font-size: .72rem; }
.media-badge small { color: #65756e; font-size: .62rem; }

/* Category ribbon */
.category-ribbon { position: relative; z-index: 2; padding-bottom: 20px; }
.category-ribbon__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-md); }
.category-ribbon button { display: flex; align-items: center; gap: 11px; min-width: 0; min-height: 86px; padding: 14px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background-color .2s, color .2s; }
.category-ribbon button:nth-child(2n) { border-right: 0; }
.category-ribbon button:nth-last-child(-n+2) { border-bottom: 0; }
.category-ribbon button:hover { background: var(--brand-soft); color: var(--brand-dark); }
.ribbon-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--brand-soft); color: var(--brand); font-size: 1.1rem; font-weight: 800; }
.category-ribbon button > span:last-child { min-width: 0; display: grid; line-height: 1.3; }
.category-ribbon strong { font-size: .83rem; }
.category-ribbon small { overflow: hidden; color: var(--text-soft); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }

/* Products */
.recommendations { padding-top: 68px; }
.product-toolbar { display: grid; gap: 13px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.search-control { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--bg); }
.search-control svg { width: 20px; flex: 0 0 auto; fill: none; stroke: var(--text-soft); stroke-width: 1.8; stroke-linecap: round; }
.search-control input { width: 100%; min-height: 46px; border: 0; outline: 0; background: transparent; color: var(--text); }
.search-control input::placeholder { color: var(--muted); }
.filter-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill { flex: 0 0 auto; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text-soft); font-size: .82rem; font-weight: 800; cursor: pointer; transition: .2s; }
.filter-pill:hover, .filter-pill.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.results-meta { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 18px 2px 12px; color: var(--text-soft); font-size: .84rem; }
.product-grid { display: grid; gap: 18px; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); box-shadow: var(--shadow-md); }
.product-image { position: relative; aspect-ratio: 4 / 2.8; overflow: hidden; background: var(--surface-soft); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 6px 9px; border: 1px solid rgb(255 255 255 / 80%); border-radius: 999px; background: rgb(255 255 255 / 90%); color: #15382d; font-size: .66rem; font-weight: 800; box-shadow: 0 5px 18px rgb(0 0 0 / 8%); }
.favorite-button { position: absolute; top: 12px; right: 12px; width: 37px; height: 37px; display: grid; place-items: center; padding: 0; border: 1px solid rgb(255 255 255 / 75%); border-radius: 50%; background: rgb(255 255 255 / 90%); color: #26463b; cursor: pointer; box-shadow: 0 5px 18px rgb(0 0 0 / 8%); }
.favorite-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.favorite-button.is-favorite { background: var(--accent); border-color: var(--accent); color: #fff; }
.favorite-button.is-favorite svg { fill: currentColor; }
.product-content { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.product-category { margin-bottom: 7px; color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { font-size: 1.12rem; }
.product-description { margin-top: 9px; color: var(--text-soft); font-size: .85rem; }
.product-criterion { display: flex; gap: 8px; margin-top: 14px; padding: 10px 11px; border-radius: 12px; background: var(--surface-soft); color: var(--text-soft); font-size: .76rem; }
.product-criterion::before { content: "✓"; color: var(--brand); font-weight: 800; }
.product-price-note { margin-top: 14px; color: var(--text); font-size: .79rem; font-weight: 700; }
.product-actions { display: grid; grid-template-columns: 1fr 43px; gap: 8px; margin-top: auto; padding-top: 16px; }
.product-actions .button { min-height: 43px; padding-inline: 13px; border-radius: 12px; font-size: .78rem; }
.copy-button { width: 43px; min-height: 43px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.copy-button:hover { border-color: var(--brand); color: var(--brand); }
.copy-button:disabled { opacity: .45; cursor: not-allowed; }
.copy-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.paid-label { margin-top: 8px; color: var(--muted); font-size: .67rem; text-align: center; }
.empty-state { padding: 52px 20px; border: 1px dashed var(--line); border-radius: 24px; background: var(--surface); text-align: center; }
.empty-state > span { display: block; color: var(--brand); font-size: 2.5rem; }
.empty-state h3 { margin-top: 10px; font-size: 1.35rem; }
.empty-state p { margin: 8px auto 20px; color: var(--text-soft); }

/* Comparisons */
.comparison-grid { display: grid; gap: 18px; }
.comparison-card { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.comparison-card::after { content: "VS"; position: absolute; right: 18px; top: 18px; color: var(--brand-soft); font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; line-height: 1; }
.comparison-card > * { position: relative; z-index: 1; }
.comparison-tag { color: var(--brand); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.comparison-card h3 { max-width: 260px; margin-top: 9px; font-size: 1.35rem; }
.comparison-card > p { margin-top: 13px; color: var(--text-soft); font-size: .88rem; }
.comparison-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.comparison-points span { padding: 6px 9px; border-radius: 999px; background: var(--surface-soft); color: var(--text-soft); font-size: .7rem; font-weight: 700; }
.comparison-card .text-link { display: inline-block; margin-top: 18px; font-size: .82rem; }

/* Videos */
.video-grid { display: grid; gap: 18px; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-sm); }
.video-cover { position: relative; aspect-ratio: 9 / 14; overflow: hidden; background: var(--surface-soft); cursor: pointer; }
.video-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-card:hover .video-cover img { transform: scale(1.025); }
.play-button { position: absolute; inset: 50% auto auto 50%; width: 68px; height: 68px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 1px solid rgb(255 255 255 / 70%); border-radius: 50%; background: rgb(255 255 255 / 88%); color: #0e6b50; font-size: 1.2rem; box-shadow: 0 18px 40px rgb(0 0 0 / 18%); cursor: pointer; backdrop-filter: blur(10px); }
.video-duration { position: absolute; right: 13px; bottom: 13px; padding: 5px 8px; border-radius: 8px; background: rgb(13 28 22 / 82%); color: #fff; font-size: .7rem; font-weight: 800; }
.video-content { padding: 18px; }
.video-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .7rem; }
.video-meta span:first-child { color: var(--brand); font-weight: 800; text-transform: uppercase; }
.video-content h3 { margin-top: 9px; font-size: 1.1rem; }
.video-content > p { margin-top: 9px; color: var(--text-soft); font-size: .83rem; }
.video-content .text-link { display: inline-block; margin-top: 13px; font-size: .78rem; }
.video-workflow { display: grid; gap: 10px; margin-top: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.video-workflow > div { display: flex; align-items: center; gap: 12px; padding: 10px; }
.video-workflow > div > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--brand-soft); color: var(--brand); font-weight: 800; }
.video-workflow p { display: grid; line-height: 1.35; }
.video-workflow small { color: var(--text-soft); font-size: .72rem; }

/* Compact links */
.links-section { background: var(--surface); }
.links-layout { display: grid; gap: 30px; align-items: center; }
.links-copy > p:not(.eyebrow) { margin-top: 18px; color: var(--text-soft); }
.check-list { display: grid; gap: 9px; margin: 22px 0 26px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--text-soft); }
.check-list li::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 9px; background: var(--brand-soft); color: var(--brand); font-size: .74rem; font-weight: 800; }
.compact-links { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface-soft); box-shadow: var(--shadow-md); }
.compact-links__header { display: flex; justify-content: space-between; gap: 10px; padding: 18px; border-bottom: 1px solid var(--line); background: var(--surface); }
.compact-links__header > div { display: flex; align-items: center; gap: 9px; }
.compact-links__header small { color: var(--text-soft); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px var(--brand-soft); }
.compact-link { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.compact-link:last-child { border-bottom: 0; }
.compact-link img { width: 48px; aspect-ratio: 1; border-radius: 12px; object-fit: cover; }
.compact-link > div { min-width: 0; display: grid; line-height: 1.3; }
.compact-link strong { overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.compact-link small { color: var(--text-soft); font-size: .68rem; }
.compact-link button, .compact-link a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--brand); text-decoration: none; cursor: pointer; }
.compact-link button:disabled { color: var(--muted); cursor: not-allowed; opacity: .55; }

/* Guides */
.guide-grid { display: grid; gap: 18px; }
.guide-card { display: flex; flex-direction: column; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-card__top { display: flex; justify-content: space-between; gap: 15px; }
.guide-category { color: var(--brand); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-number { color: var(--line); font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.guide-card h3 { margin-top: 15px; font-size: 1.25rem; }
.guide-card > p { margin-top: 12px; color: var(--text-soft); font-size: .86rem; }
.guide-card .text-link { align-self: flex-start; margin-top: auto; padding-top: 20px; font-size: .82rem; }

/* About */
.about-grid { display: grid; gap: 42px; align-items: center; }
.about-art { position: relative; min-height: 430px; }
.about-card { position: absolute; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-md); }
.about-card--main { inset: 0 38px 60px 0; overflow: hidden; }
.about-card--main img { width: 100%; height: 100%; object-fit: cover; }
.about-card--main span { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 12px; background: rgb(255 255 255 / 88%); color: #15382d; font-weight: 800; backdrop-filter: blur(10px); }
.about-card--small { right: 0; bottom: 0; width: 155px; padding: 20px; display: grid; color: #fff; background: var(--brand); }
.about-card--small strong { font-family: var(--font-display); font-size: 2.2rem; }
.about-card--small span { font-size: .75rem; }
.about-card--quote { top: 22px; right: 0; width: 180px; padding: 18px; color: #6c3b23; background: #fff0e8; font-family: var(--font-display); font-size: .9rem; font-weight: 800; }
.about-copy > p:not(.eyebrow) { margin-top: 17px; color: var(--text-soft); }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 24px; }
.values-grid div { display: grid; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.values-grid strong { font-size: .82rem; }
.values-grid span { color: var(--text-soft); font-size: .7rem; }

/* FAQ */
.faq-layout { display: grid; gap: 28px; }
.faq-intro > p:not(.eyebrow) { margin-top: 16px; color: var(--text-soft); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--brand); font-size: 1.4rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 18px 18px; color: var(--text-soft); font-size: .88rem; }

/* Contact */
.contact-section { background: #0D1B2A; color: #fff; }
.contact-grid { display: grid; gap: 30px; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { margin-top: 18px; color: rgb(255 255 255 / 75%); }
.contact-meta { display: grid; gap: 8px; margin-top: 24px; color: rgb(255 255 255 / 82%); font-size: .85rem; }
.contact-form { display: grid; gap: 14px; padding: 20px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 25px; background: rgb(255 255 255 / 10%); backdrop-filter: blur(12px); }
.field-row { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: rgb(255 255 255 / 82%); font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgb(255 255 255 / 22%); border-radius: 12px; background: rgb(255 255 255 / 10%); color: #fff; outline: 0; }
.contact-form input, .contact-form select { min-height: 46px; padding: 0 13px; }
.contact-form textarea { resize: vertical; padding: 12px 13px; }
.contact-form select option { background: #133c31; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgb(255 255 255 / 72%); box-shadow: 0 0 0 3px rgb(255 255 255 / 10%); }
.contact-form [aria-invalid="true"] { border-color: #ffb0a8; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; }
.form-footer p { flex: 1 1 220px; color: #ffd7cc; font-size: .76rem; }

/* Footer */
.site-footer { padding: 55px 0 20px; background: #0e1713; color: #dbe7e0; }
.footer-grid { display: grid; gap: 30px; }
.brand--footer strong { color: #fff; }
.brand--footer small { color: #9eafa6; }
.footer-brand > p { max-width: 390px; margin-top: 15px; color: #9eafa6; font-size: .85rem; }
.footer-grid h2 { margin-bottom: 12px; color: #fff; font-size: .85rem; letter-spacing: .02em; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid a, .footer-grid button { width: fit-content; padding: 0; border: 0; background: transparent; color: #9eafa6; font-size: .8rem; text-decoration: none; cursor: pointer; }
.footer-grid a:hover, .footer-grid button:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; margin-top: 38px; padding-top: 20px; border-top: 1px solid #26352e; color: #83948b; font-size: .72rem; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #32453c; border-radius: 11px; color: #dbe7e0; font-size: .68rem; font-weight: 800; text-decoration: none; }
.social-links a:hover { border-color: #5bc49d; color: #5bc49d; }

/* Modals */
dialog { color: var(--text); }
dialog::backdrop { background: rgb(6 19 14 / 70%); backdrop-filter: blur(5px); }
.modal, .video-modal { width: min(100% - 24px, 760px); max-height: min(88vh, 900px); padding: 0; overflow: auto; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-lg); }
.modal-shell { position: relative; padding: 30px 22px; }
.modal-close { position: absolute; z-index: 5; top: 14px; right: 14px; width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font-size: 1.5rem; cursor: pointer; }
.modal-shell h2 { padding-right: 42px; font-size: 2rem; }
.modal-intro { margin-top: 12px; color: var(--text-soft); }
.modal-body { margin-top: 22px; color: var(--text-soft); }
.modal-body p + p { margin-top: 14px; }
.modal-body h3 { margin: 25px 0 8px; color: var(--text); }
.modal-body ul { padding-left: 20px; }
.modal-body .button { margin-top: 20px; }
.video-modal { width: min(100% - 24px, 940px); }
.video-modal__shell { position: relative; display: grid; background: #0c1310; }
.video-modal video { width: 100%; max-height: 70vh; aspect-ratio: 9 / 14; background: #000; object-fit: contain; }
.modal-close--video { color: #fff; border-color: rgb(255 255 255 / 25%); background: rgb(0 0 0 / 45%); }
.video-modal__content { padding: 22px; background: var(--surface); }
.video-modal__content > p:not(.eyebrow) { margin-top: 10px; color: var(--text-soft); }
.video-modal__content #videoDialogAction { margin-top: 18px; }
.stats-summary { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.stat-card { padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.stat-card span { color: var(--text-soft); font-size: .72rem; }
.stats-list { display: grid; gap: 12px; margin-top: 22px; }
.stat-row { display: grid; gap: 7px; }
.stat-row__head { display: flex; justify-content: space-between; gap: 10px; font-size: .78rem; }
.stat-row__head span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stat-bar { height: 9px; overflow: hidden; border-radius: 99px; background: var(--surface-soft); }
.stat-bar span { display: block; height: 100%; border-radius: inherit; background: var(--brand); }
.stats-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; margin-top: 25px; }

/* Toast + consent */
.toast { position: fixed; z-index: 2000; left: 50%; bottom: 22px; max-width: calc(100% - 28px); padding: 11px 15px; transform: translate(-50%, 120px); border-radius: 13px; background: #13251f; color: #fff; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; font-size: .8rem; font-weight: 700; transition: transform .25s, opacity .25s, visibility .25s; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.consent-banner { position: fixed; z-index: 1900; right: 14px; bottom: 14px; left: 14px; display: grid; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); box-shadow: var(--shadow-lg); }
.consent-banner p { display: grid; }
.consent-banner span { color: var(--text-soft); font-size: .76rem; }
.consent-banner > div { display: flex; gap: 8px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Tablet */
@media (min-width: 620px) {
  .container { width: min(100% - 48px, var(--container)); }
  .section { padding: 92px 0; }
  .affiliate-bar__inner { font-size: .78rem; }
  .brand small { display: block; }
  .hero-actions .button { flex: 0 0 auto; }
  .hero-principles { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .media-badge { display: flex; }
  .media-badge--top { top: 5%; left: -2%; }
  .media-badge--side { top: 37%; right: -2%; }
  .media-badge--bottom { right: 6%; bottom: 4%; }
  .category-ribbon__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .category-ribbon button:nth-child(2n) { border-right: 1px solid var(--line); }
  .category-ribbon button:nth-child(3n) { border-right: 0; }
  .category-ribbon button:nth-last-child(-n+3) { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .comparison-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .guide-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .field-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .consent-banner { right: 22px; left: auto; width: min(440px, calc(100% - 44px)); }
  .video-modal__shell { grid-template-columns: minmax(280px, .8fr) 1fr; }
  .video-modal video { max-height: 78vh; }
  .video-modal__content { align-self: center; padding: 34px; }
}

/* Desktop */
@media (min-width: 920px) {
  :root { --header-height: 82px; }
  .affiliate-bar__inner { justify-content: center; }
  .site-header { top: 0; }
  .menu-toggle { display: none; }
  .main-nav { position: static; inset: auto; display: flex; align-items: center; gap: 22px; margin-left: auto; padding: 0; background: transparent; border: 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; }
  .main-nav a { position: relative; padding: 28px 0; border: 0; font-size: .78rem; }
  .main-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; transform: scaleX(0); border-radius: 2px; background: var(--brand); transition: transform .2s; }
  .main-nav a:hover::after, .main-nav a.is-current::after { transform: scaleX(1); }
  .hero { min-height: 690px; display: grid; align-items: center; padding: 70px 0 55px; }
  .hero-grid { grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 50px; }
  .hero h1 { font-size: clamp(3.4rem, 5.1vw, 5.35rem); }
  .hero-lead { max-width: 620px; }
  .category-ribbon { margin-top: -42px; padding-bottom: 12px; }
  .category-ribbon__grid { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .category-ribbon button { border-right: 1px solid var(--line) !important; border-bottom: 0 !important; }
  .category-ribbon button:last-child { border-right: 0 !important; }
  .section-heading { grid-template-columns: minmax(0,1.1fr) minmax(320px,.7fr); align-items: end; }
  .section-heading > p { justify-self: end; }
  .product-toolbar { grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); align-items: center; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .comparison-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .video-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .video-workflow { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .video-workflow > div + div { border-left: 1px solid var(--line); }
  .links-layout { grid-template-columns: minmax(0,.9fr) minmax(470px,1.1fr); gap: 70px; }
  .guide-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .about-grid { grid-template-columns: minmax(420px,.9fr) minmax(0,1.1fr); gap: 80px; }
  .faq-layout { grid-template-columns: minmax(280px,.68fr) minmax(0,1.32fr); gap: 70px; }
  .contact-grid { grid-template-columns: minmax(0,.82fr) minmax(480px,1.18fr); gap: 70px; align-items: center; }
  .footer-grid { grid-template-columns: 1.8fr repeat(3, minmax(0,.6fr)); }
  .footer-brand { grid-column: auto; }
  .modal-shell { padding: 42px; }
}

/* Wide desktop */
@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .product-card h3 { min-height: 2.5em; }
  .guide-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* ==========================================================
   VELAGRAF 2026 · mejoras editoriales y de actualización
   ========================================================== */
.product-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.product-meta-line .product-category { margin: 0; }
.editorial-status {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-criterion::before { display: none; }
.product-criterion > span { flex: 0 0 auto; color: var(--brand); font-weight: 900; }
.product-update {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .68rem;
}
.product-update time { font-weight: 700; white-space: nowrap; }
.guide-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.guide-keywords span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .64rem;
  font-weight: 700;
}

.methodology-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--brand-soft) 75%, transparent), transparent 34%),
    var(--bg);
}
.methodology-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.method-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.method-stats > div {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.method-stats > div:nth-child(2n) { border-right: 0; }
.method-stats > div:nth-last-child(-n + 2) { border-bottom: 0; }
.method-stats strong {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1;
}
.method-stats span { margin-top: 8px; color: var(--text-soft); font-size: .73rem; font-weight: 700; }
.method-grid { position: relative; z-index: 1; display: grid; gap: 14px; }
.method-card {
  min-height: 220px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.method-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 38%, var(--line)); box-shadow: var(--shadow-md); }
.method-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
}
.method-card h3 { margin-top: 24px; font-size: 1.16rem; }
.method-card p { margin-top: 11px; color: var(--text-soft); font-size: .84rem; }
.method-callout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.method-callout::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -95px;
  width: 240px;
  height: 240px;
  border: 35px solid rgb(255 255 255 / 6%);
  border-radius: 50%;
}
.method-callout > * { position: relative; z-index: 1; }
.method-callout .eyebrow { margin-bottom: 10px; color: #aee7d1; }
.method-callout h3 { color: #fff; font-size: clamp(1.45rem, 5vw, 2.2rem); }
.method-callout p:not(.eyebrow) { max-width: 680px; margin-top: 10px; color: rgb(255 255 255 / 73%); }
.method-callout .button { justify-self: start; background: #fff; color: #07523d; }
.method-callout .button:hover { background: #eef8f4; }

/* Article pages generated for SEO */
.article-page { background: var(--bg); }
.article-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(16px); }
.article-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.article-nav > a:last-child { color: var(--brand); font-size: .8rem; font-weight: 800; text-decoration: none; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 22px 0 6px; font-size: .78rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text-soft); font-weight: 600; }
.article-main { padding: 54px 0 90px; }
.article-hero { display: grid; gap: 30px; align-items: center; }
.article-hero__copy h1 { font-size: clamp(2.45rem, 8vw, 4.8rem); }
.article-hero__copy > p:not(.eyebrow) { max-width: 760px; margin-top: 20px; color: var(--text-soft); font-size: 1.08rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--muted); font-size: .76rem; }
.article-hero__image { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface-soft); box-shadow: var(--shadow-md); }
/* Las imágenes principales de las guías deben verse completas, sin recortes. */
.article-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  background: #fff;
}
.article-layout { display: grid; gap: 36px; margin-top: 52px; }
.article-content { padding: 26px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-sm); }
.article-content h2 { margin: 34px 0 14px; font-size: clamp(1.5rem, 5vw, 2.15rem); }
.article-content h2:first-child { margin-top: 0; }
.article-content p { color: var(--text-soft); }
.article-content p + p { margin-top: 18px; }
.article-checklist { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.article-checklist li { display: flex; gap: 10px; padding: 12px; border-radius: 14px; background: var(--surface-soft); color: var(--text-soft); }
.article-checklist li::before { content: "✓"; color: var(--brand); font-weight: 900; }
.article-aside { display: grid; align-content: start; gap: 16px; }
.article-box { padding: 21px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.article-box h2 { font-size: 1.08rem; }
.article-box p { margin-top: 10px; color: var(--text-soft); font-size: .82rem; }
.article-box .button { width: 100%; margin-top: 17px; }
.article-keywords { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.article-keywords span { padding: 5px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: .66rem; font-weight: 700; }
.article-disclosure { margin-top: 32px; padding: 18px; border-left: 4px solid var(--brand); border-radius: 0 15px 15px 0; background: var(--brand-soft); color: var(--text-soft); font-size: .8rem; }

@media (min-width: 620px) {
  .method-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .method-stats > div { border-bottom: 0; }
  .method-stats > div:nth-child(2n) { border-right: 1px solid var(--line); }
  .method-stats > div:last-child { border-right: 0; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-callout { grid-template-columns: minmax(0, 1fr) auto; padding: 34px; }
}

@media (min-width: 920px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .72rem; }
  .method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-hero { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 55px; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 310px; align-items: start; }
  .article-aside { position: sticky; top: 100px; }
}

@media (min-width: 1180px) {
  .main-nav { gap: 21px; }
  .main-nav a { font-size: .78rem; }
}
.article-related { display: grid; gap: 10px; margin-top: 12px; }
.article-related a { padding: 10px 0; border-top: 1px solid var(--line); color: var(--brand); font-size: .78rem; font-weight: 800; text-decoration: none; }
.article-related a:first-child { border-top: 0; }
.article-related a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 919px) {
  .site-header.is-scrolled .main-nav { inset: var(--header-height) 0 auto; }
}

[hidden] { display: none !important; }

/* VELAGRAF v1.1 · acceso rápido a distribución */
.social-share-button { text-decoration: none; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--brand); }
.social-share-button:hover { background: var(--brand-soft); border-color: var(--brand); }

/* VELAGRAF v1.5 · identidad oficial */
.brand .official-logo { width: 230px; height: 56px; object-fit: contain; object-position: left center; }
.brand--footer .official-logo { width: 260px; height: auto; }
.hero-principles { grid-template-columns: 1fr; }
.category-ribbon__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (min-width: 760px) {
  .hero-principles { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-ribbon__grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .category-ribbon button { border-bottom: 0; }
  .category-ribbon button:nth-child(3n) { border-right: 1px solid var(--line); }
  .category-ribbon button:last-child { border-right: 0; }
}
@media (max-width: 520px) { .brand .official-logo { width: 175px; height: 48px; } }

/* ==========================================================
   VELAGRAF v1.6 · corrección definitiva de logotipos
   Evita que las reglas genéricas de imágenes deformen el
   logotipo horizontal y mejora su lectura en el pie oscuro.
   ========================================================== */

.site-header .brand,
.article-header .brand {
  width: clamp(185px, 19vw, 245px);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 12px;
  background: #ffffff;
}

.brand .official-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.footer-brand .brand--footer {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 16%);
}

.footer-brand .official-logo--footer {
  display: block;
  width: min(285px, 72vw);
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 760px) {
  .site-header .brand,
  .article-header .brand {
    width: 180px;
  }

  .brand .official-logo {
    max-height: 48px;
  }
}

@media (max-width: 420px) {
  .site-header .brand,
  .article-header .brand {
    width: 158px;
  }
}

/* ==========================================================
   VELAGRAF v2.0 · lanzamiento comercial
   Producto visible, CTA directo y contenido público simplificado.
   ========================================================== */

:root { --container: 1320px; }

.hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.hero-grid {
  gap: 44px;
}

.hero-lead {
  max-width: 620px;
}

.hero-featured-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-product-loading {
  min-height: 460px;
  display: grid;
  place-items: center;
  color: var(--text-soft);
}

.hero-product-media {
  position: relative;
  min-height: 285px;
  background: #fafaf8;
  border-bottom: 1px solid var(--line);
}

.hero-product-media img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  max-height: 360px;
  object-fit: contain;
  padding: 20px;
}

.hero-product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #052516;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero-image-note {
  position: absolute;
  right: 16px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
  color: #52635b;
  font-size: .64rem;
  font-weight: 700;
}

.hero-product-copy {
  padding: 24px;
}

.hero-product-kicker {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-product-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.hero-product-copy > p:not(.hero-product-kicker):not(.hero-product-limit):not(.paid-label) {
  margin-top: 10px;
  color: var(--text-soft);
}

.hero-product-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.hero-product-copy li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: .8rem;
  font-weight: 700;
}

.hero-product-copy li span {
  color: var(--brand);
  font-weight: 900;
}

.hero-product-limit {
  padding: 11px 13px;
  margin: 0 0 15px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: var(--accent-soft);
  color: var(--text-soft);
  font-size: .8rem;
}

.hero-product-limit strong { color: var(--text); }

.hero-product-cta {
  width: 100%;
}

.recommendations--launch {
  padding-top: 48px;
  padding-bottom: 42px;
  background: var(--surface-soft);
}

.section-heading--commercial {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
}

.section-heading--commercial .section-intro {
  max-width: 700px;
  margin-top: 10px;
  color: var(--text-soft);
}

.section-heading__link {
  white-space: nowrap;
}

.product-grid--launch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card--commercial {
  border-radius: 18px;
  box-shadow: 0 10px 32px rgb(13 27 42 / 8%);
}

.product-card--commercial:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  box-shadow: 0 18px 45px rgb(13 27 42 / 13%);
}

.product-card--commercial .product-image {
  aspect-ratio: 4 / 3;
  background: #fafaf8;
}

.product-card--commercial .product-image img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  transform: none;
}

.product-card--commercial:hover .product-image img {
  transform: scale(1.015);
}

.product-card--commercial .product-badge {
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  font-size: .58rem;
}

.product-image-note {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 3px 6px;
  border-radius: 7px;
  background: rgb(255 255 255 / 88%);
  color: #5e6d66;
  font-size: .56rem;
  font-weight: 700;
}

.product-card--commercial .favorite-button {
  top: 9px;
  right: 9px;
  width: 34px;
  height: 34px;
}

.product-card--commercial .product-content {
  padding: 15px;
}

.product-card--commercial .product-category {
  margin-bottom: 4px;
  color: var(--brand);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card--commercial h3 {
  min-height: 2.45em;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.product-card--commercial .product-description {
  display: -webkit-box;
  min-height: 3.95em;
  margin-top: 8px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: .76rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-highlights {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 12px 0;
  list-style: none;
}

.product-highlights li {
  display: flex;
  gap: 6px;
  color: var(--text);
  font-size: .72rem;
  line-height: 1.35;
}

.product-highlights li span {
  color: var(--brand);
  font-weight: 900;
}

.product-limitation {
  min-height: 4.2em;
  padding-top: 9px;
  margin: 0 0 12px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .69rem;
  line-height: 1.4;
}

.product-limitation strong {
  color: var(--text);
}

.product-actions--commercial {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.product-buy-button {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  font-size: .74rem;
}

.product-share-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.product-share-actions .copy-button {
  width: 32px;
  height: 32px;
}

.product-card--commercial .paid-label {
  margin-top: 7px;
  color: var(--muted);
  font-size: .58rem;
  text-align: center;
}

.product-discovery {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.product-discovery summary {
  padding: 14px 17px;
  color: var(--brand-dark);
  font-weight: 800;
  cursor: pointer;
}

.product-discovery[open] summary {
  border-bottom: 1px solid var(--line);
}

.product-discovery .product-toolbar,
.product-discovery .results-meta {
  margin: 0;
  padding: 14px 17px;
}

.category-ribbon {
  padding-top: 0;
  background: var(--surface-soft);
}

.category-ribbon__grid {
  box-shadow: var(--shadow-sm);
}

.method-grid--public {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.method-public-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.method-public-callout p {
  max-width: 720px;
  margin-top: 4px;
  color: var(--text-soft);
}

.contact-copy > p {
  max-width: 660px;
}

@media (min-width: 600px) {
  .product-grid--launch {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (min-width: 900px) {
  .product-grid--launch {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (min-width: 1180px) {
  .product-grid--launch {
    grid-template-columns: repeat(5, minmax(0,1fr));
  }
}

@media (max-width: 980px) {
  .hero-product-copy ul {
    grid-template-columns: 1fr;
  }

  .section-heading--commercial {
    grid-template-columns: 1fr;
  }

  .section-heading__link {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 26px;
  }

  .hero-principles {
    display: none;
  }

  .hero-product-media,
  .hero-product-media img {
    min-height: 230px;
  }

  .hero-product-copy {
    padding: 19px;
  }

  .method-grid--public {
    grid-template-columns: 1fr;
  }

  .method-public-callout {
    display: grid;
  }

  .method-public-callout .button {
    width: 100%;
  }
}

/* VELAGRAF · guías específicas de producto */
.article-layout--decision { align-items: start; }
.article-content--decision { padding: clamp(18px,3vw,34px); }
.decision-intro { margin-bottom: 34px; }
.decision-product { display: grid; gap: 24px; align-items: center; padding: 30px 0; border-top: 1px solid var(--line); }
.decision-product__image { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.decision-product__image img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 12px; }
.decision-product__copy h2 { margin: 6px 0 12px; }
.decision-product__copy h3 { margin: 22px 0 8px; font-size: 1rem; }
.decision-label { color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.decision-warning { margin: 18px 0; padding: 15px; border-radius: 14px; background: #fff1e8; color: #61301b; font-size: .84rem; }
.decision-product .button { width: 100%; margin-top: 12px; }
.decision-verdict { margin-top: 24px; padding: clamp(22px,4vw,34px); border-radius: 22px; background: var(--brand-soft); }
.decision-verdict h2 { margin-top: 6px; }
.article-related-products { display: grid; gap: 14px; margin-top: 15px; }
.related-mini { display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); }
.related-mini:first-child { padding-top: 0; border-top: 0; }
.related-mini img { width: 70px; height: 58px; object-fit: contain; border-radius: 10px; background: #fff; }
.related-mini strong,.related-mini small { display: block; }
.related-mini small { margin-top: 3px; color: var(--muted); }
@media (min-width: 760px) { .decision-product { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 34px; } .decision-product--reverse .decision-product__image { order: 2; } }


/* ==========================================================
   VELAGRAF 2.2 · criterios específicos por producto
   ========================================================== */
.hero-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-product-actions .hero-product-cta,
.hero-product-actions .button-secondary {
  margin-top: 0;
}
.product-criteria-button {
  width: 100%;
  margin: 2px 0 13px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.product-criteria-button:hover,
.product-criteria-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand-soft) 76%, var(--surface));
}
.criteria-product-summary {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}
.criteria-product-summary img {
  width: 132px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 13px;
  background: #fff;
}
.criteria-product-summary strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}
.criteria-product-summary p {
  margin-top: 7px;
}
.criteria-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.criteria-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.criteria-step > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 900;
}
.modal-body .criteria-step h3 {
  margin: 0 0 5px;
  font-size: .96rem;
}
.criteria-step p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.55;
}
.criteria-conclusion {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 0 15px 15px 0;
  background: var(--brand-soft);
}
.criteria-conclusion strong { color: var(--text); }
.criteria-conclusion p { margin-top: 7px; }
.criteria-guide-button { display: inline-flex; }
@media (max-width: 640px) {
  .hero-product-actions { display: grid; }
  .criteria-product-summary { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; }
  .criteria-product-summary img { width: 92px; }
  .criteria-steps { grid-template-columns: 1fr; }
}


/* VELAGRAF FINAL PRO · ajustes de interacción y contexto */
.section-heading__context {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .92rem;
  text-align: right;
}
.about-card--main {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-card--main:hover,
.about-card--main:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgb(13 27 42 / 14%);
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  outline: none;
}
.about-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.product-criteria-button {
  min-height: 44px;
}
@media (max-width: 760px) {
  .section-heading__context { text-align: left; }
  .about-actions .button { width: 100%; }
}


/* VELAGRAF 3.0 · productos relacionados en guías */
.article-related-actions { display:grid; gap:.75rem; margin-top:1rem; }
.article-related-actions .button { width:100%; justify-content:center; text-align:center; }
@media (min-width:760px){ .article-related-actions { grid-template-columns:repeat(2,minmax(0,1fr)); } }


/* Protección antispam del formulario */
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}


/* V32 · imágenes robustas en tarjetas */
.product-card--commercial .product-image {
  min-height: 190px;
  background: #ffffff;
}
.product-card--commercial .product-image img {
  display: block;
  object-fit: contain;
  object-position: center;
  color: transparent;
}
.article-hero__image img,
.decision-product__image img,
.criteria-product-summary img {
  object-fit: contain;
  background: #ffffff;
}


/* ==========================================================
   VELAGRAF V35 · categoría Vuelta al cole en la banda visual
   Siete accesos: 2 columnas móvil, 3 intermedio y 4 escritorio.
   ========================================================== */

.category-ribbon button {
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
}

.category-ribbon button:nth-child(2n) {
  border-right: 0 !important;
}

.category-ribbon button:last-child {
  border-bottom: 0 !important;
}

@media (min-width: 620px) and (max-width: 759px) {
  .category-ribbon__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-ribbon button {
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .category-ribbon button:nth-child(3n) {
    border-right: 0 !important;
  }

  .category-ribbon button:last-child {
    border-bottom: 0 !important;
  }
}

@media (min-width: 760px) {
  .category-ribbon__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-ribbon button {
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .category-ribbon button:nth-child(4n) {
    border-right: 0 !important;
  }

  .category-ribbon button:nth-last-child(-n + 3) {
    border-bottom: 0 !important;
  }
}


/* ==========================================================
   VELAGRAF V36 · formulario de contacto con envío real
   ========================================================== */

.contact-privacy-note {
  margin: -2px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: .72rem;
  line-height: 1.45;
}

.form-footer p[data-state="idle"] {
  color: rgb(255 255 255 / 72%);
}

.form-footer p[data-state="sending"] {
  color: #d8fff4;
}

.form-footer p[data-state="success"] {
  color: #a9ffd9;
  font-weight: 700;
}

.form-footer p[data-state="error"] {
  color: #ffd7cc;
  font-weight: 700;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
}

.contact-form button[aria-busy="true"] span[aria-hidden="true"] {
  animation: contact-arrow-pulse .8s ease-in-out infinite alternate;
}

@keyframes contact-arrow-pulse {
  from { transform: translateX(0); }
  to { transform: translateX(5px); }
}


/* ==========================================================
   VELAGRAF SEO + IMÁGENES V02 · legibilidad de tarjetas
   ========================================================== */
.product-grid--launch {
  grid-template-columns: 1fr;
}

.product-actions--commercial {
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch;
}

.product-actions--commercial > .button,
.product-actions--commercial > .product-detail-link {
  width: 100%;
  min-width: 0;
}

.product-actions--commercial > .product-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--line));
  border-radius: 12px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: .75rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-actions--commercial > .product-detail-link:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
  text-decoration: none;
}

.product-share-actions {
  justify-content: center;
  padding-top: 2px;
}

.product-buy-button {
  white-space: normal;
  text-align: left;
  line-height: 1.3;
}

.product-card--commercial h3 {
  min-height: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 600px) {
  .product-grid--launch { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .product-grid--launch { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
  .product-grid--launch { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* V09: teaser Próximamente guayaberas — composición editorial equilibrada */
.guayaberas-teaser {
  background: linear-gradient(118deg, #263847 0%, #405765 48%, #b8cfca 100%);
  color: #fff;
  overflow: hidden;
}
.guayaberas-teaser__shell {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(2.25rem, 5vw, 5.5rem);
  align-items: center;
  min-height: clamp(560px, 60vw, 720px);
}
.guayaberas-teaser__copy {
  padding-block: clamp(2.5rem, 5vw, 5rem);
  max-width: 620px;
}
.guayaberas-teaser__copy .eyebrow { color: #2dd4bf; }
.guayaberas-teaser__copy h2 {
  color: #fff;
  max-width: 600px;
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.guayaberas-teaser__copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.88);
  max-width: 560px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}
.guayaberas-teaser__cta {
  margin-top: .65rem;
  padding: .95rem 1.35rem;
  font-size: 1rem;
}
.guayaberas-teaser__media {
  align-self: stretch;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
  box-shadow: -18px 24px 60px rgba(0,0,0,.24);
}
.guayaberas-teaser__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 52% 22%;
  display: block;
}
@media (max-width: 980px) {
  .guayaberas-teaser__shell { grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr); gap: 2rem; }
  .guayaberas-teaser__copy h2 { font-size: clamp(2.5rem, 5.4vw, 4rem); }
}
@media (max-width: 820px) {
  .guayaberas-teaser__shell { grid-template-columns: 1fr; min-height: auto; }
  .guayaberas-teaser__copy { padding-bottom: .5rem; max-width: 680px; }
  .guayaberas-teaser__media { min-height: 520px; border-radius: 24px 24px 0 0; }
  .guayaberas-teaser__media img { min-height: 520px; object-position: 50% 18%; }
}
@media (max-width: 560px) {
  .guayaberas-teaser__copy h2 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .guayaberas-teaser__media, .guayaberas-teaser__media img { min-height: 430px; }
}
