/* =========================================================
   GASTRONAUTAS — GASTRONOMÍA PARA TODOS
   Página de inicio / CSS responsive
   ========================================================= */

:root {
  --navy: #071635;
  --navy-2: #0d2046;
  --navy-3: #142b56;
  --cream: #fffaf3;
  --paper: #f7f2ea;
  --white: #ffffff;
  --gold: #d9a441;
  --gold-light: #f1c889;
  --peach: #f7d6c0;
  --text: #18243a;
  --muted: #6d7480;
  --border: #dedbd5;
  --shadow: 0 12px 30px rgba(7, 22, 53, .10);
  --radius: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 22, 53, .97);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 245px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.05;
  margin-left: 10px;
  max-width: 190px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.main-nav a {
  position: relative;
  padding: 26px 0 23px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: rgba(255,255,255,.9);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: rotate(-20deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 9px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta {
  background: var(--peach);
  color: #17213a;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.menu-toggle,
.menu-button {
  display: none;
}

/* ---------------- HERO ---------------- */

.hero {
  min-height: 455px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url("cheesecake-maracuya.jpeg")
    center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,22,53,.97) 0%, rgba(7,22,53,.82) 35%, rgba(7,22,53,.20) 75%, rgba(7,22,53,.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
}

.eyebrow {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 7px;
}

.hero h1 {
  max-width: 570px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  margin-bottom: 18px;
}

.hero-text {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  margin-bottom: 25px;
}

.button-light {
  background: var(--peach);
  color: #17213a;
  width: fit-content;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid white;
  border-radius: 50%;
}

.hero-dots .selected {
  background: white;
}

/* ---------------- QUICK LINKS ---------------- */

.quick-links {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-grid a {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-right: 1px solid var(--border);
  transition: background .2s ease;
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-grid a:hover {
  background: #fff7ee;
}

.quick-icon {
  font-size: 26px;
  color: var(--navy);
}

.quick-grid strong,
.quick-grid small {
  display: block;
}

.quick-grid strong {
  font-size: 13px;
  margin-bottom: 3px;
}

.quick-grid small {
  color: var(--muted);
  font-size: 11px;
}

/* ---------------- GENERAL SECTIONS ---------------- */

.section {
  padding: 65px 0;
}

.section-soft {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.1;
}

.section-heading a {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.section-heading.compact {
  margin-bottom: 14px;
}

.section-heading.compact h2 {
  font-size: 23px;
}

.section-kicker {
  display: block;
  margin-bottom: 4px;
  color: #9b6a18;
}

/* ---------------- RECIPE AREA ---------------- */

.content-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 38px;
}

.recipe-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.recipe-card {
  display: block;
  color: inherit;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(7,22,53,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.recipe-card img {
  height: 165px;
  object-fit: cover;
}

.card-body {
  padding: 12px 13px 14px;
}

.recipe-tag {
  display: inline-block;
  margin-bottom: 5px;
  color: #9b6a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .7px;
}

.card-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.card-body p {
  min-height: 36px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.card-link {
  display: inline-block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}


/* ---------------- LEARN ---------------- */

.learn-section {
  background: #fffdf9;
}

.learn-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.learn-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.learn-intro p {
  max-width: 710px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.learn-main-link {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.learn-feature-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.learn-feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(7,22,53,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.learn-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.learn-feature-image {
  height: 200px;
  background-position: center;
  background-size: cover;
}

.learn-feature-image.techniques {
  background-image:
    linear-gradient(180deg, rgba(7,22,53,.08), rgba(7,22,53,.15)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1000&q=85");
}

.learn-feature-image.ingredients {
  background-image:
    linear-gradient(180deg, rgba(7,22,53,.02), rgba(7,22,53,.12)),
    url("https://images.unsplash.com/photo-1606787366850-de6330128bfc?auto=format&fit=crop&w=1000&q=85");
}

.learn-feature-image.tools {
  background-image:
    linear-gradient(180deg, rgba(7,22,53,.02), rgba(7,22,53,.12)),
    url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1000&q=85");
}

.learn-feature-body {
  padding: 18px 18px 20px;
}

.learn-level,
.learning-path-kicker {
  color: #9b6a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.learn-feature-body h3 {
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
}

.learn-feature-body p {
  min-height: 56px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.learn-card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
}

.learning-path {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid #e6ddd2;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1e7, #fff9f4);
}

.learning-path h3 {
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.learning-path p {
  max-width: 620px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.learning-levels {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 9px;
}

.learning-levels a {
  min-width: 110px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  padding: 12px;
  border: 1px solid rgba(7,22,53,.10);
  border-radius: 10px;
  background: white;
}

.learning-levels a span {
  grid-row: span 2;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.learning-levels strong {
  font-size: 11px;
}

.learning-levels small {
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 1050px) {
  .learn-feature-image {
    height: 175px;
  }

  .learning-path {
    grid-template-columns: 1fr;
  }

  .learning-levels {
    width: 100%;
  }
}

/* ---------------- BUSINESS ---------------- */

.business-section {
  background: var(--paper);
}

.business-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.business-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.business-intro p {
  max-width: 710px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.business-main-link {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.business-main-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.business-feature {
  display: grid;
  grid-template-rows: 215px 1fr;
  overflow: hidden;
  border: 1px solid #e3d5c8;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 18px rgba(75,48,31,.07);
}

.business-feature-image {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,22,53,.02), rgba(7,22,53,.68)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1200&q=85")
    center / cover;
}

.business-feature-image span {
  position: absolute;
  left: 18px;
  bottom: 15px;
  padding: 6px 8px;
  border-radius: 5px;
  background: rgba(7,22,53,.76);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.business-feature-body {
  padding: 20px 20px 22px;
}

.business-feature-body h3 {
  max-width: 480px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.12;
}

.business-feature-body p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.business-feature-body > span {
  display: inline-block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.business-tools {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.business-tool {
  min-height: 130px;
  display: grid;
  grid-template-columns: 38px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 17px;
  border: 1px solid #e3d5c8;
  border-radius: 12px;
  background: #fffaf6;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.business-tool:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 12px 25px rgba(75,48,31,.10);
}

.tool-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 18px;
}

.business-tool strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.business-tool small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.business-tool b {
  font-size: 15px;
}

.business-product-strip {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid #e1d2c5;
  border-radius: 13px;
  background: linear-gradient(135deg, #17284c, #0b1937);
  color: white;
}

.business-product-kicker {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.business-product-strip h3 {
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.business-product-strip p {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.product-pills {
  display: flex;
  gap: 8px;
}

.product-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .business-main-grid {
    grid-template-columns: 1fr;
  }

  .business-feature {
    grid-template-rows: 230px auto;
  }

  .business-product-strip {
    grid-template-columns: 1fr;
  }
}

/* ---------------- AD ---------------- */

.ad-placeholder {
  min-height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-top: 1px solid #e5e1da;
  border-bottom: 1px solid #e5e1da;
  color: #aaa;
  font-size: 10px;
  letter-spacing: 1.2px;
}

/* ---------------- LATIN AMERICA ---------------- */

.latin-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.latin-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.1;
}

.latin-intro p {
  max-width: 650px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.latin-main-link {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.country-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.country-card {
  min-height: 205px;
  position: relative;
  display: flex;
  align-items: end;
  border-radius: 14px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,18,40,.05) 15%, rgba(5,18,40,.82) 100%);
}

.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg, rgba(0,0,0,.1), rgba(0,0,0,.22));
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(7,22,53,.18);
}

.country-content {
  width: 100%;
  padding: 18px;
}

.country-flag {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(5px);
  font-size: 25px;
}

.country-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
}

.country-card small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.35;
}

.country-card em {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  color: var(--gold-light);
}

.mexico {
  background:
    linear-gradient(135deg, rgba(119,19,31,.88), rgba(32,78,48,.82)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.argentina {
  background:
    linear-gradient(135deg, rgba(31,89,129,.87), rgba(111,160,190,.78)),
    url("https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.colombia {
  background:
    linear-gradient(135deg, rgba(33,68,41,.89), rgba(164,115,33,.78)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.peru {
  background:
    linear-gradient(135deg, rgba(84,26,32,.9), rgba(153,94,63,.78)),
    url("https://images.unsplash.com/photo-1534422298391-e4f8c172dddb?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.chile {
  background:
    linear-gradient(135deg, rgba(26,55,83,.88), rgba(137,57,57,.80)),
    url("https://images.unsplash.com/photo-1569058242253-92a9c755a0ec?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.brazil {
  background:
    linear-gradient(135deg, rgba(22,71,39,.9), rgba(155,121,30,.77)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=700&q=80")
    center / cover;
}

.latin-mobile-note {
  display: none;
}

.latin-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
}

.latin-dots i,
.latin-dots b {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #c7c0b6;
}

.latin-dots b {
  width: 7px;
  height: 7px;
  background: var(--navy);
}

/* ---------------- EVENTS ---------------- */

.events-section {
  background: #fffdf9;
}

.events-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.events-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.events-intro p {
  max-width: 720px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.events-main-link {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.events-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-feature-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: 0 5px 15px rgba(7,22,53,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.event-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.event-feature-image {
  position: relative;
  height: 180px;
  background-position: center;
  background-size: cover;
}

.event-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,22,53,.05), rgba(7,22,53,.62));
}

.event-feature-image span {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(7,22,53,.76);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.event-feature-image.mist {
  background-image: url("Afiche-Congreso-gastronomicopopayan-2026-scaled.jpeg");
}

.event-feature-image.foodwine {
  background-image: url("festival-sansebastian-españa.jpg");
}

.event-feature-image.gastrocol {
  background-image: url("festival\ food\ &\ wine.jfif");
}

.event-feature-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 13px;
  padding: 17px;
}

.event-date {
  width: 52px;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fff0e4;
  color: var(--navy);
}

.event-date strong {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1;
}

.event-date small {
  margin-top: 2px;
  color: #9b6a18;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
}

.event-country {
  color: #9b6a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .7px;
}

.event-feature-body h3 {
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.12;
}

.event-feature-body p {
  min-height: 38px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.event-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.events-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #e6ddd2;
  border-radius: 13px;
  background: #fff6ef;
}

.events-bottom-kicker {
  color: #9b6a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.events-bottom h3 {
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.events-bottom p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.event-filters a {
  padding: 9px 11px;
  border: 1px solid #e3d5c8;
  border-radius: 8px;
  background: white;
  font-size: 10px;
  font-weight: 700;
}

/* ---------------- FREE RESOURCE ---------------- */

.free-resource-section {
  padding-top: 20px;
  padding-bottom: 58px;
}

.free-resource-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 38px;
  padding: 32px 38px;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 8% 20%, rgba(241,200,137,.14), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(255,255,255,.06), transparent 32%),
    linear-gradient(135deg, #081735, #142b56);
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(7,22,53,.15);
}

.resource-cover-wrap {
  display: flex;
  justify-content: center;
}

.resource-cover {
  position: relative;
  width: 135px;
  min-height: 178px;
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241,200,137,.8);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
    #10244b;
  box-shadow:
    8px 9px 0 rgba(255,255,255,.06),
    0 13px 25px rgba(0,0,0,.2);
  text-align: center;
}

.resource-cover-kicker {
  font-size: 7px;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.resource-cover strong {
  margin-top: 9px;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: .9;
  color: #fff6e7;
}

.resource-cover-title {
  margin-top: 8px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff6e7;
}

.resource-cover small {
  margin-top: 10px;
  font-size: 7px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
}

.resource-cover-mark {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--gold-light);
  font-size: 13px;
}

.free-resource-copy h2 {
  max-width: 650px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.07;
}

.free-resource-copy > p {
  max-width: 650px;
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.resource-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 16px;
}

.resource-benefits span {
  color: #fff3df;
  font-size: 11px;
  font-weight: 600;
}

.free-resource-card .resource-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 9px;
  max-width: 640px;
  margin-top: 19px;
}

.free-resource-card .resource-form input {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.free-resource-card .resource-form input:focus {
  border-color: var(--gold-light);
}

.resource-privacy {
  display: block;
  max-width: 640px;
  margin-top: 9px;
  color: rgba(255,255,255,.52);
  font-size: 9px;
}

.resource-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 13px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 10px;
}

.resource-trust strong {
  color: var(--navy);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .free-resource-card {
    grid-template-columns: 150px 1fr;
    gap: 26px;
  }

  .resource-cover {
    width: 120px;
    min-height: 165px;
  }

  .free-resource-card .resource-form {
    grid-template-columns: 1fr;
  }
}

/* ---------------- LATEST ARTICLES ---------------- */

.latest-section {
  background: var(--cream);
}

.latest-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.latest-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.latest-intro p {
  max-width: 720px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.latest-main-link {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.latest-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.latest-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: white;
  box-shadow: 0 4px 14px rgba(7,22,53,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.latest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.latest-feature {
  grid-row: span 2;
  grid-template-rows: 245px 1fr;
}

.latest-image {
  position: relative;
  background-position: center;
  background-size: cover;
}

.latest-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,22,53,.03), rgba(7,22,53,.48));
}

.latest-image.dessert {
  background-image:
    linear-gradient(135deg, rgba(74,20,25,.12), rgba(7,22,53,.05)),
    url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=1200&q=85");
}

.latest-image.business-article {
  background-image:
    linear-gradient(135deg, rgba(31,50,83,.08), rgba(7,22,53,.04)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1000&q=85");
}

.latest-image.colombian {
  background-image:
    linear-gradient(135deg, rgba(39,63,31,.10), rgba(7,22,53,.04)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1000&q=85");
}

.latest-image.rice {
  background-image:
    linear-gradient(135deg, rgba(103,77,35,.08), rgba(7,22,53,.04)),
    url("https://images.unsplash.com/photo-1536304993881-ff6e9eefa2a6?auto=format&fit=crop&w=1000&q=85");
}

.latest-tag {
  position: absolute;
  z-index: 1;
  left: 13px;
  bottom: 12px;
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(7,22,53,.78);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
}

.latest-body {
  padding: 15px 16px 17px;
}

.latest-date {
  color: #a0a0a0;
  font-size: 9px;
}

.latest-body h3 {
  margin-top: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1.16;
}

.latest-feature .latest-body h3 {
  font-size: 25px;
}

.latest-body p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.latest-link {
  display: inline-block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.latest-topics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
}

.latest-topics a {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .latest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .latest-feature {
    grid-row: span 1;
    grid-column: 1 / -1;
    grid-template-rows: 235px 1fr;
  }
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 55px 0 0;
  background: var(--navy);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr .95fr .95fr 1.35fr;
  gap: 38px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-brand h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.05;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  line-height: 1.55;
}

.footer-links h3,
.footer-subscribe h3 {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-subscribe h3 {
  margin-bottom: 6px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}

.footer-subscribe p {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.45;
}

.footer-subscribe form {
  position: relative;
  margin-top: 13px;
}

.footer-subscribe input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: white;
  color: var(--text);
  outline: none;
}

.footer-subscribe input:focus {
  border-color: var(--gold-light);
}

.footer-subscribe button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

.footer-subscribe small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  transition: background .2s ease, transform .2s ease;
}

.socials a:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding: 15px 0 18px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.42);
  font-size: 9px;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-subscribe {
    grid-column: span 3;
  }
}



/* =========================================================
   MOBILE RESPONSIVE — V15
   ========================================================= */

@media (max-width: 720px) {

  .container {
    width: min(100% - 24px, var(--container));
  }

  /* Header */
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 65px;
    justify-content: space-between;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    display: block;
    font-size: 16px;
    max-width: 165px;
  }

  .header-actions {
    margin-left: auto;
  }

  .search-button {
    font-size: 27px;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    cursor: pointer;
    order: 5;
  }

  .menu-button span {
    display: block;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 2px;
  }

  .main-nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 16px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
  }

  .main-nav a {
    padding: 14px 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }

  /* Hero */
  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7,22,53,.94) 0%, rgba(7,22,53,.70) 55%, rgba(7,22,53,.30) 100%),
      linear-gradient(0deg, rgba(7,22,53,.82) 0%, rgba(7,22,53,.20) 65%, rgba(7,22,53,.15) 100%);
  }

  .hero-content {
    padding: 82px 20px 92px;
    justify-content: center;
  }

  .eyebrow {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero-text {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero .button {
    width: 100%;
    max-width: 260px;
  }

  .quick-links {
    margin-top: -25px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-grid a {
    min-height: 72px;
    border-bottom: 1px solid var(--border);
  }

  .quick-grid a:nth-child(2n) {
    border-right: 0;
  }

  .quick-grid a:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

  .section-heading {
    align-items: end;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  /* Recipes */
  .recipe-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .recipe-grid::-webkit-scrollbar {
    display: none;
  }

  .recipe-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  .recipe-card img {
    height: 180px;
  }

  /* Learn */
  .learn-intro {
    display: block;
  }

  .learn-intro p {
    font-size: 13px;
  }

  .learn-main-link {
    display: inline-block;
    margin-top: 12px;
  }

  .learn-feature-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .learn-feature-grid::-webkit-scrollbar {
    display: none;
  }

  .learn-feature-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  .learn-feature-image {
    height: 185px;
  }

  .learn-feature-body p {
    min-height: auto;
  }

  .learning-path {
    padding: 20px 18px;
  }

  .learning-path h3 {
    font-size: 21px;
  }

  .learning-levels {
    display: flex;
    overflow-x: auto;
    gap: 9px;
    scrollbar-width: none;
  }

  .learning-levels::-webkit-scrollbar {
    display: none;
  }

  .learning-levels a {
    flex: 0 0 135px;
  }

  /* Business */
  .business-intro {
    display: block;
  }

  .business-intro p {
    font-size: 13px;
  }

  .business-main-link {
    display: inline-block;
    margin-top: 12px;
  }

  .business-main-grid {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .business-feature {
    grid-template-rows: 205px auto;
  }

  .business-tools {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 11px;
    margin-top: 13px;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .business-tools::-webkit-scrollbar {
    display: none;
  }

  .business-tool {
    flex: 0 0 min(78vw, 285px);
    min-height: 140px;
    scroll-snap-align: start;
  }

  .business-product-strip {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    padding: 19px 18px;
  }

  .product-pills {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
  }

  .product-pills::-webkit-scrollbar {
    display: none;
  }

  .product-pills a {
    flex: 0 0 auto;
  }

  /* Latin America */
  .latin-intro {
    display: block;
    margin-bottom: 18px;
  }

  .latin-intro p {
    font-size: 13px;
  }

  .latin-main-link {
    display: inline-block;
    margin-top: 12px;
    white-space: normal;
  }

  .country-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .country-grid::-webkit-scrollbar {
    display: none;
  }

  .country-card {
    flex: 0 0 min(76vw, 275px);
    min-height: 250px;
    scroll-snap-align: start;
  }

  .country-card strong {
    font-size: 24px;
  }

  .latin-mobile-note {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
  }

  /* Events */
  .events-intro {
    display: block;
  }

  .events-intro p {
    font-size: 13px;
  }

  .events-main-link {
    display: inline-block;
    margin-top: 12px;
  }

  .events-feature-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .events-feature-grid::-webkit-scrollbar {
    display: none;
  }

  .event-feature-card {
    flex: 0 0 min(82vw, 315px);
    scroll-snap-align: start;
  }

  .event-feature-image {
    height: 190px;
  }

  .events-bottom {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .event-filters {
    justify-content: flex-start;
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .event-filters::-webkit-scrollbar {
    display: none;
  }

  .event-filters a {
    flex: 0 0 auto;
  }

  /* Free resource */
  .free-resource-section {
    padding-top: 10px;
    padding-bottom: 44px;
  }

  .free-resource-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 18px;
    text-align: center;
  }

  .resource-cover-wrap {
    justify-content: center;
  }

  .free-resource-copy > p {
    font-size: 13px;
  }

  .resource-benefits {
    justify-content: center;
    gap: 7px 12px;
  }

  .free-resource-card .resource-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .free-resource-card .resource-form input,
  .free-resource-card .resource-form .button {
    width: 100%;
  }

  .resource-privacy {
    margin-inline: auto;
  }

  .resource-trust {
    text-align: center;
    line-height: 1.6;
  }

  /* Latest articles */
  .latest-intro {
    display: block;
  }

  .latest-intro p {
    font-size: 13px;
  }

  .latest-main-link {
    display: inline-block;
    margin-top: 12px;
  }

  .latest-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .latest-grid::-webkit-scrollbar {
    display: none;
  }

  .latest-card,
  .latest-feature {
    flex: 0 0 min(82vw, 315px);
    display: grid;
    grid-template-rows: 185px 1fr;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .latest-feature .latest-image {
    height: 205px;
  }

  .latest-feature .latest-body h3 {
    font-size: 22px;
  }

  .latest-topics {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .latest-topics::-webkit-scrollbar {
    display: none;
  }

  .latest-topics a {
    flex: 0 0 auto;
  }
}

/* Small phones */
@media (max-width: 390px) {

  .brand-name {
    font-size: 15px;
    max-width: 150px;
  }

  .country-card {
    flex-basis: 82vw;
    min-height: 235px;
  }

  .learn-feature-card {
    flex-basis: 86vw;
  }

  .business-feature {
    grid-template-rows: 185px auto;
  }

  .business-tool {
    flex-basis: 84vw;
  }

  .latest-card,
  .latest-feature {
    flex-basis: 86vw;
  }

  .resource-cover {
    width: 112px;
    min-height: 155px;
  }

  .resource-cover strong {
    font-size: 46px;
  }

  .resource-cover-title {
    font-size: 14px;
  }

  .event-feature-card {
    flex-basis: 86vw;
  }

  .search-button {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .recipe-card {
    flex-basis: 84vw;
  }

  .recipe-card img {
    height: 195px;
  }
}

/* Footer responsive */
@media (max-width: 720px) {
  .footer-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 22px;
    padding-inline: 10px;
  }

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

  .footer-brand p {
    max-width: 100%;
  }

  .footer-subscribe form {
    max-width: 100%;
  }

  .footer-links {
    padding-inline: 2px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    line-height: 1.45;
  }
}

@media (max-width: 390px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding-inline: 8px;
  }

  .footer-links {
    grid-column: 1 / -1;
    padding: 2px 4px 0;
  }

  .footer-brand h2 {
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 8px;
  }
}

/* =========================================================
   RECIPE PAGE
   ========================================================= */

.recipe-page{background:var(--cream)}
.recipe-breadcrumb{padding:14px 0;border-bottom:1px solid #e8e2d8;background:#fffdf9;color:var(--muted);font-size:11px}
.recipe-breadcrumb .container{display:flex;gap:9px;align-items:center;flex-wrap:wrap}
.recipe-breadcrumb a{color:var(--navy);font-weight:700}
.recipe-hero{padding:28px 0 52px;background:#fffdf9}
.recipe-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
.recipe-hero-image{min-height:470px;overflow:hidden;border-radius:18px;box-shadow:var(--shadow)}
.recipe-hero-image img{width:100%;height:100%;min-height:470px;object-fit:cover}
.recipe-category{color:#9b6a18;font-size:10px;font-weight:800;letter-spacing:1px}
.recipe-hero-copy h1{margin-top:8px;color:var(--navy);font-family:"Playfair Display",Georgia,serif;font-size:clamp(38px,5vw,64px);line-height:1.02}
.recipe-lead{max-width:570px;margin-top:17px;color:var(--muted);font-size:16px;line-height:1.65}
.recipe-rating-row{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:18px;color:var(--muted);font-size:12px}
.stars{color:#d39b2e;letter-spacing:1px;font-size:15px}
.recipe-summary{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.recipe-summary div{min-width:92px;padding:12px 13px;border:1px solid var(--border);border-radius:10px;background:white}
.recipe-summary strong,.recipe-summary span{display:block}
.recipe-summary strong{color:var(--navy);font-family:"Playfair Display",serif;font-size:18px}
.recipe-summary span{margin-top:2px;color:var(--muted);font-size:9px;text-transform:uppercase;letter-spacing:.5px}
.recipe-actions{display:flex;gap:9px;margin-top:17px}
.recipe-action-button{padding:10px 13px;border:1px solid var(--border);border-radius:8px;background:white;color:var(--navy);font-size:10px;font-weight:700}
.recipe-layout{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:34px;align-items:start;padding-top:30px;padding-bottom:70px}
.recipe-content{min-width:0}
.recipe-ad-placeholder,.sidebar-ad{min-height:90px;display:grid;place-items:center;border-top:1px solid #e5e1da;border-bottom:1px solid #e5e1da;color:#aaa;font-size:9px;letter-spacing:1.2px}
.recipe-section{padding:46px 0;border-bottom:1px solid #e7e1d8}
.recipe-section-title{display:flex;align-items:center;gap:9px;margin-bottom:20px}
.recipe-section-title>span{font-size:22px}
.recipe-section-title h2{color:var(--navy);font-family:"Playfair Display",serif;font-size:30px}
.ingredients-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.ingredients-grid>div{padding:18px;border:1px solid var(--border);border-radius:12px;background:white}
.ingredients-grid h3{margin-bottom:9px;font-size:13px}
.ingredients-grid ul{padding-left:17px;color:var(--muted);font-size:12px;line-height:1.85}
.steps-list{display:grid;gap:18px;list-style:none}
.steps-list li{display:grid;grid-template-columns:42px 1fr;gap:14px;align-items:start}
.step-number{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:var(--navy);color:white;font-size:13px;font-weight:800}
.steps-list h3{font-family:"Playfair Display",serif;font-size:19px}
.steps-list p{margin-top:4px;color:var(--muted);font-size:12px;line-height:1.6}
.chef-tip-section{display:grid;grid-template-columns:58px 1fr;gap:17px;align-items:start;margin-top:30px;padding:24px;border:1px solid #ead9c9;border-radius:14px;background:linear-gradient(135deg,#fff0e6,#fff9f4)}
.chef-tip-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:50%;background:var(--navy);font-size:20px}
.chef-tip-section h2{margin-top:4px;font-family:"Playfair Display",serif;font-size:23px}
.chef-tip-section p{margin-top:6px;color:var(--muted);font-size:12px;line-height:1.6}
.tips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:13px}
.tip-card{min-height:145px;padding:17px;border:1px solid var(--border);border-radius:11px;background:white}
.tip-card strong{font-family:"Playfair Display",serif;font-size:16px}
.tip-card p{margin-top:7px;color:var(--muted);font-size:11px;line-height:1.55}
.faq-section details{border-top:1px solid var(--border)}
.faq-section details:last-child{border-bottom:1px solid var(--border)}
.faq-section summary{padding:16px 0;cursor:pointer;list-style:none;font-size:13px;font-weight:700}
.faq-section summary::-webkit-details-marker{display:none}
.faq-section summary::after{content:"+";float:right;color:#9b6a18;font-size:17px}
.faq-section details[open] summary::after{content:"−"}
.faq-section details p{padding:0 0 16px;color:var(--muted);font-size:12px;line-height:1.6}
.recipe-sidebar{position:sticky;top:92px;display:grid;gap:16px}
.sidebar-card{padding:18px;border:1px solid var(--border);border-radius:12px;background:white}
.recipe-toc{display:grid;gap:8px;margin-top:8px}
.recipe-toc a{color:var(--navy);font-size:11px;font-weight:700}
.related-side{background:linear-gradient(135deg,#fff2e8,#fffaf6)}
.related-side h3{margin-top:6px;font-family:"Playfair Display",serif;font-size:20px}
.related-side p{margin-top:6px;color:var(--muted);font-size:11px;line-height:1.5}
.related-side a{display:inline-block;margin-top:11px;color:var(--navy);font-size:10px;font-weight:800}
.recipe-related{padding:46px 0}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:13px}
.related-card{overflow:hidden;border:1px solid var(--border);border-radius:11px;background:white}
.related-card img{width:100%;height:140px;object-fit:cover}
.related-card span{display:block;margin:11px 12px 4px;color:#9b6a18;font-size:8px;font-weight:800;letter-spacing:.7px}
.related-card h3{margin:0 12px 14px;font-family:"Playfair Display",serif;font-size:16px;line-height:1.15}
.recipe-newsletter{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-top:10px;padding:25px 26px;border-radius:14px;background:var(--navy);color:white}
.recipe-newsletter h2{margin-top:4px;font-family:"Playfair Display",serif;font-size:25px}
.recipe-newsletter p{margin-top:4px;color:rgba(255,255,255,.68);font-size:11px}
.recipe-newsletter .button{flex:0 0 auto}

@media (max-width:1050px){
  .recipe-hero-grid{grid-template-columns:1fr}
  .recipe-hero-image,.recipe-hero-image img{min-height:360px}
  .recipe-layout{grid-template-columns:1fr}
  .recipe-sidebar{position:static}
  .ingredients-grid,.tips-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .recipe-breadcrumb{padding:12px 0}
  .recipe-hero{padding:16px 0 38px}
  .recipe-hero-grid{gap:22px}
  .recipe-hero-image,.recipe-hero-image img{min-height:300px}
  .recipe-hero-copy h1{font-size:39px}
  .recipe-lead{font-size:14px}
  .recipe-summary{display:grid;grid-template-columns:repeat(3,1fr)}
  .recipe-summary div{min-width:0;padding:10px 8px}
  .recipe-actions{width:100%}
  .recipe-action-button{flex:1}
  .recipe-layout{padding-top:14px}
  .recipe-section{padding:36px 0}
  .recipe-section-title h2{font-size:26px}
  .ingredients-grid,.tips-grid,.related-grid{grid-template-columns:1fr}
  .ingredients-grid>div{padding:16px}
  .chef-tip-section{grid-template-columns:1fr}
  .chef-tip-icon{width:46px;height:46px}
  .recipe-sidebar{display:none}
  .related-card img{height:185px}
  .recipe-newsletter{flex-direction:column;align-items:flex-start;padding:21px 18px}
  .recipe-newsletter .button{width:100%}
}
@media (max-width:390px){
  .recipe-hero-copy h1{font-size:35px}
  .recipe-summary strong{font-size:16px}
  .recipe-summary span{font-size:8px}
}

/* RECIPES CATEGORY PAGE */
/* =========================================================
   PÁGINA INDIVIDUAL DE RECETA (ESTILOS ESPECÍFICOS)
   ========================================================= */

.recipe-breadcrumb {
  padding: 16px 0;
  font-size: 11px;
  color: var(--muted);
}

.recipe-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.recipe-breadcrumb span {
  margin: 0 6px;
}

.recipe-hero {
  padding: 20px 0 30px;
}

.recipe-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.recipe-hero-image img {
  border-radius: var(--radius);
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.recipe-category {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #9b6a18;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.recipe-hero-copy h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.recipe-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.recipe-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 18px;
}

.recipe-rating-row .stars {
  color: #f39c12;
}

.recipe-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.recipe-summary strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  line-height: 1;
}

.recipe-summary span {
  font-size: 10px;
  color: var(--muted);
}

.recipe-actions {
  display: flex;
  gap: 10px;
}

.recipe-action-button {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.recipe-action-button:hover {
  background: var(--paper);
}

/* RECIPE LAYOUT & SIDEBAR */
.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 38px;
  padding-bottom: 60px;
}

.recipe-ad-placeholder {
  min-height: 90px;
  display: grid;
  place-items: center;
  background: #f0ede6;
  border: 1px dashed var(--border);
  color: #aaa;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.recipe-section {
  margin-bottom: 40px;
}

.recipe-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.recipe-section-title h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: white;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ingredients-grid h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 4px;
  display: inline-block;
}

.ingredients-grid ul {
  list-style: none;
}

.ingredients-grid li {
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #efece6;
  color: #444;
}

/* STEPS LIST */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  background: white;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.steps-list h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.steps-list p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* CHEF TIP */
.chef-tip-section {
  display: flex;
  gap: 18px;
  background: #fff8ef;
  border: 1px solid #f1d5b3;
  padding: 22px;
  border-radius: var(--radius);
}

.chef-tip-icon {
  font-size: 28px;
}

/* TIPS GRID */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tip-card {
  background: white;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.tip-card strong {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--navy);
}

.tip-card p {
  font-size: 11px;
  color: var(--muted);
}

/* FAQ */
.faq-section details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 12px 16px;
}

.faq-section summary {
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.faq-section p {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* RELATED & NEWSLETTER */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.related-card img {
  height: 120px;
  object-fit: cover;
}

.related-card span {
  display: block;
  font-size: 8px;
  font-weight: 800;
  color: #9b6a18;
  padding: 8px 10px 0;
}

.related-card h3 {
  font-size: 13px;
  padding: 4px 10px 10px;
}

.recipe-newsletter {
  margin-top: 35px;
  background: var(--navy);
  color: white;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.recipe-newsletter h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.recipe-newsletter p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* SIDEBAR */
.recipe-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
}

.recipe-toc a {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid #f2efea;
}

.recipe-toc a:hover {
  color: var(--navy);
  font-weight: 700;
}

.sidebar-ad {
  height: 250px;
  display: grid;
  place-items: center;
  background: #f0ede6;
  border: 1px dashed var(--border);
  color: #aaa;
  font-size: 10px;
}

.related-side h3 {
  font-size: 16px;
  margin-top: 4px;
}

.related-side p {
  font-size: 11px;
  color: var(--muted);
  margin: 6px 0 12px;
}

.related-side a {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
}

/* RESPONSIVE EN RECETA */
@media (max-width: 900px) {
  .recipe-hero-grid {
    grid-template-columns: 1fr;
  }
  .recipe-layout {
    grid-template-columns: 1fr;
  }
  .recipe-sidebar {
    display: none; /* Se oculta sidebar en móvil tal como se acordó */
  }
  .tips-grid, .related-grid {
    grid-template-columns: 1fr;
  }
  .recipe-newsletter {
    flex-direction: column;
    text-align: center;
  }
}

/*titulos y encabezados*/
h1, h2, h3, .brand-name {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

/* Marca en el Header */
.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
/*recetas*/
/* SECCIÓN DE RECETAS */
.recipe-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.recipe-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.recipe-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recipe-card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-card-image img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: #d4a359;
  color: #1a1a1a;
}

.recipe-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-meta {
  font-size: 10px;
  font-weight: 700;
  color: #9b6a18;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.recipe-card-content h3 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--navy);
}

.recipe-card-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
/* =========================================================
   SECCIÓN EMPRENDE
   ========================================================= */

.business-section {
  background: #fcfbfa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.business-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.business-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 24px;
  background: white;
  border: 1px solid var(--border);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Tarjeta lateral de negocio */
.business-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.business-card-header {
  background: var(--navy);
  color: white;
  padding: 24px;
}

.business-card-header h3 {
  font-size: 18px;
  margin-top: 8px;
  color: white;
}

.business-card-body {
  padding: 24px;
}

.business-card-body p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.formula-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.formula-list li {
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: #333;
}

.formula-list strong {
  color: var(--navy);
}

.business-quote {
  background: #fff8ef;
  border-left: 3px solid #d4a359;
  padding: 12px 14px;
  font-size: 11px;
  color: #555;
  border-radius: 0 6px 6px 0;
  margin: 0;
}

/* Responsive Móvil */
@media (max-width: 850px) {
  .business-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* =========================================================
   SECCIÓN APRENDE / RECURSOS
   ========================================================= */
/* =========================================================
   ESTILOS PARA SUBPÁGINAS Y CONTENIDO EDUCATIVO
   ========================================================= */

.page-content {
  padding-top: 40px;
  padding-bottom: 60px;
  max-width: 850px; /* Ancho optimizado para lectura cómoda */
}

.lesson-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border, #e2e8f0);
  padding-bottom: 24px;
}

.lesson-header h1 {
  font-size: 32px;
  color: var(--navy, #1e293b);
  margin: 12px 0;
  line-height: 1.2;
}

.lead {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.guide-block {
  margin-bottom: 40px;
}

.guide-block h2 {
  font-size: 22px;
  color: var(--navy, #1e293b);
  margin-bottom: 16px;
}

.guide-block h3 {
  font-size: 16px;
  color: var(--navy, #1e293b);
  margin: 20px 0 8px 0;
}

.guide-block p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 14px;
}

.tip-box {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.tip-box h3 {
  margin: 0 0 6px 0;
  color: #15803d;
  font-size: 15px;
}

.tip-box p {
  margin: 0;
  font-size: 14px;
  color: #166534;
}

/* Grid de fichas técnicas de cortes */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.guide-card {
  background: #f8fafc;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 20px;
}

.guide-card h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: var(--navy, #1e293b);
}

.specs {
  font-size: 12px;
  color: var(--gold, #d4a359);
  margin-bottom: 10px !important;
}

.divider {
  border: 0;
  height: 1px;
  background: var(--border, #e2e8f0);
  margin: 40px 0;
}
/* Styles para Métodos de Cocción */
.cooking-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.method-card {
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.method-type {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold, #d4a359);
  font-weight: 700;
  display: block;
}

.method-card h3 {
  margin: 4px 0 10px 0;
  font-size: 16px;
}

/* Styles para Técnicas Pro de Chef */
.pro-tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.pro-tip-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--navy, #1e293b);
}

.pro-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold, #d4a359);
  line-height: 1;
}

.pro-tip-item h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
}

.pro-tip-item p {
  margin: 0;
  font-size: 14px;
}
/* =========================================================
   DETALLES DECORATIVOS E IMÁGENES
   ========================================================= */

/* Estilos de las imágenes en las tarjetas */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #f1f5f9;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Efecto Hover interactivo */
.guide-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(30, 41, 59, 0.85);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  font-weight: 600;
}

/* Ajustes a la tarjeta */
.guide-card {
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 12px 4px 4px 4px;
}

/* Cajas de Íconos para Técnicas Pro */
.pro-icon-box {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.pro-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.pro-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #d4a359);
  text-transform: uppercase;
}

.pro-time {
  font-size: 11px;
  color: #64748b;
}
/* =========================================================
   DETALLES DECORATIVOS E IMÁGENES
   ========================================================= */

/* Estilos de las imágenes en las tarjetas */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #f1f5f9;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Efecto Hover interactivo */
.guide-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(30, 41, 59, 0.85);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  font-weight: 600;
}

/* Ajustes a la tarjeta */
.guide-card {
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 12px 4px 4px 4px;
}

/* Cajas de Íconos para Técnicas Pro */
.pro-icon-box {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.pro-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.pro-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #d4a359);
  text-transform: uppercase;
}

.pro-time {
  font-size: 11px;
  color: #64748b;
}
/* =========================================================
   ELEMENTOS INTERACTIVOS (JAVASCRIPT)
   ========================================================= */

/* Botón Volver Arriba */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--navy, #1e293b);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--gold, #d4a359);
  transform: translateY(-3px);
}

/* Ocultar elementos al filtrar */
.guide-card.is-hidden,
.method-card.is-hidden,
.pro-tip-item.is-hidden {
  display: none !important;
}
/* =========================================================
   SECCIÓN DE RECURSOS DESCARGABLES
   ========================================================= */

.resources-section {
  background: #f8fafc;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 32px 24px;
  margin: 40px 0;
}

.resources-header {
  text-align: center;
  margin-bottom: 28px;
}

.resources-header h2 {
  font-size: 24px;
  color: var(--navy, #1e293b);
  margin: 8px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.resource-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.resource-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #d4a359);
  text-transform: uppercase;
}

.resource-info h3 {
  font-size: 16px;
  color: var(--navy, #1e293b);
  margin: 4px 0 8px 0;
}

.resource-info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--navy, #1e293b);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-download:hover {
  background-color: var(--gold, #d4a359);
  color: #1e293b;
}
/* =========================================================
   PÁGINA DE RECETAS
   ========================================================= */

.recipes-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}

.hero-kicker {
  font-size: 13px;
  color: var(--gold, #d4a359);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.recipes-hero h1 {
  font-size: 32px;
  color: var(--navy, #1e293b);
  margin: 0;
}

.hero-description {
  max-width: 450px;
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Tabs de Filtrado */
.filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border, #cbd5e1);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy, #1e293b);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--navy, #1e293b);
  color: #ffffff;
  border-color: var(--navy, #1e293b);
}

/* Grilla de Recetas */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.recipe-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.recipe-card .card-image-wrap {
  height: 190px;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.badge-destacada { background: #d4a359; }
.badge-nueva { background: #1e293b; }
.badge-tendencia { background: #0284c7; }

.recipe-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-meta {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.recipe-body h3 {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.recipe-body h3 a {
  color: var(--navy, #1e293b);
  text-decoration: none;
}

.recipe-body h3 a:hover {
  color: var(--gold, #d4a359);
}

.recipe-body p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Responsivo para el Hero de Recetas */
@media (max-width: 768px) {
  .recipes-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* =========================================================
   RECETA DESTACADA (HERO DEDICADO)
   ========================================================= */

.featured-recipe-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #d4a359;
  color: #1e293b;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
}

.featured-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.recipe-tag {
  color: #d4a359;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-info h2 {
  font-size: 28px;
  margin: 8px 0 12px 0;
}

.featured-info p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.recipe-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  font-size: 13px;
}

.btn-primary {
  display: inline-block;
  background: #d4a359;
  color: #1e293b;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #b88942;
}

.featured-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

/* FILTROS AVANZADOS */
.advanced-filter-bar {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.filter-group select {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  outline: none;
}

/* LEAD MAGNET BANNER */
.lead-magnet-banner {
  background: #f1f5f9;
  border-left: 4px solid #d4a359;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.lead-text h3 {
  margin: 0 0 4px 0;
  color: #1e293b;
}

.lead-text p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.lead-form {
  display: flex;
  gap: 8px;
}

.lead-form input {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  outline: none;
}

.lead-form button {
  background: #1e293b;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
  }
  .lead-magnet-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lead-form {
    width: 100%;
    flex-direction: column;
  }
}
/* =========================================================
   PÁGINA DETALLE DE RECETA LASAGNA MIXTA
   ========================================================= */

/* Migas de pan (Breadcrumbs) */
.recipe-breadcrumb {
  background: #f8fafc;
  padding: 12px 0;
  font-size: 13px;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.recipe-breadcrumb a {
  color: var(--navy, #1e293b);
  text-decoration: none;
}

.recipe-breadcrumb span {
  margin: 0 8px;
  color: #cbd5e1;
}

/* Hero de la receta */
.recipe-hero {
  background: #ffffff;
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
}

.recipe-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.recipe-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.recipe-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold, #d4a359);
  letter-spacing: 1px;
}

.recipe-hero-copy h1 {
  font-size: 32px;
  color: var(--navy, #1e293b);
  margin: 8px 0;
}

.recipe-lead {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.recipe-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 14px;
}

.recipe-rating-row .stars {
  color: #f59e0b;
}

.recipe-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  border: 1px solid #e2e8f0;
}

.recipe-summary strong {
  display: block;
  font-size: 20px;
  color: var(--navy, #1e293b);
}

.recipe-summary span {
  font-size: 12px;
  color: #64748b;
}

.recipe-actions {
  display: flex;
  gap: 12px;
}

.recipe-action-button {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.recipe-action-button:hover {
  border-color: var(--navy, #1e293b);
  background: #f8fafc;
}

/* Layout Principal (2 Columnas: Contenido + Sidebar) */
.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Espacios Publicitarios de AdSense */
.recipe-ad-placeholder, .sidebar-ad {
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

/* Secciones de Contenido */
.recipe-section {
  margin-bottom: 40px;
}

.recipe-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.recipe-section-title h2 {
  font-size: 22px;
  color: var(--navy, #1e293b);
  margin: 0;
}

/* Grilla de Ingredientes */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.ingredients-grid h3 {
  font-size: 15px;
  color: var(--gold, #d4a359);
  margin-top: 0;
}

.ingredients-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredients-grid li {
  padding: 6px 0;
  border-bottom: 1px border-dotted #e2e8f0;
  font-size: 14px;
  color: #334155;
}

/* Lista de Pasos */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.step-number {
  background: var(--navy, #1e293b);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.steps-list h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: var(--navy, #1e293b);
}

.steps-list p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Consejo de Gastronauta */
.chef-tip-section {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.chef-tip-icon {
  font-size: 28px;
}

.chef-tip-section h2 {
  color: #ffffff;
  font-size: 18px;
  margin: 4px 0;
}

.chef-tip-section p {
  color: #94a3b8;
  margin: 0;
  font-size: 14px;
}

/* Variaciones y FAQ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.tip-card {
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}

.faq-section details {
  background: #f8fafc;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.faq-section summary {
  font-weight: 600;
  color: var(--navy, #1e293b);
}

.faq-section p {
  margin: 10px 0 0 0;
  font-size: 13px;
  color: #64748b;
}

/* Sidebar */
.recipe-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.recipe-toc a {
  display: block;
  padding: 8px 0;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
}

.recipe-toc a:hover {
  color: var(--gold, #d4a359);
}

/* Adaptación Celular y Tabletas */
@media (max-width: 900px) {
  .recipe-hero-grid, .recipe-layout {
    grid-template-columns: 1fr;
  }

  .recipe-sidebar {
    position: static;
  }
}
/* =========================================================
   PÁGINA APRENDE: TARJETAS DE MÓDULOS CULINARIOS
   ========================================================= */

.learn-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.learn-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.learn-card .card-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.learn-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learn-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-kicker {
  font-size: 11px;
  font-weight: 800;
  color: #b45309; /* Color dorado / ámbar corporativo */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.learn-card h2 {
  font-size: 22px;
  color: #1e293b;
  margin: 0 0 10px 0;
  font-family: inherit;
}

.learn-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.card-link {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #b45309;
}
/* Interactividad de tarjetas dentro de la misma página */
.learn-card {
  cursor: pointer;
  border: 2px solid transparent;
}

.learn-card.active, .learn-card:hover {
  border-color: #b45309;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.learn-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.learn-card p {
  margin-bottom: 0; /* Al quitar el botón/enlace, reducimos el margen final */
}
/* BANNER PUBLICITARIO SUPERIOR */
.top-ad-banner {
  margin: 24px 0 32px 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.top-ad-banner .ad-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #e2e8f0;
  color: #475569;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.top-ad-banner .ad-content p {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #334155;
}

.top-ad-banner .ad-placeholder-text {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* Adaptabilidad para móviles */
@media (max-width: 640px) {
  .top-ad-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .top-ad-banner .ad-placeholder-text {
    text-align: left;
  }
}
/* =========================================================
   HOTMART — CURSOS RECOMENDADOS
   ========================================================= */

.hotmart-section {
  margin: 55px 0;
}

.hotmart-header {
  max-width: 760px;
  margin-bottom: 25px;
}

.hotmart-header h2 {
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
}

.hotmart-header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hotmart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hotmart-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(7,22,53,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hotmart-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hotmart-image {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.hotmart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotmart-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
}

.hotmart-body {
  padding: 18px;
}

.hotmart-category {
  color: #9b6a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
}

.hotmart-body h3 {
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.15;
}

.hotmart-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.hotmart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.hotmart-button:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

.hotmart-disclaimer {
  max-width: 760px;
  margin: 17px auto 0;
  color: #929292;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .hotmart-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hotmart-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hotmart-grid::-webkit-scrollbar {
    display: none;
  }

  .hotmart-card {
    flex: 0 0 min(82vw, 315px);
    scroll-snap-align: start;
  }

  .hotmart-image {
    height: 195px;
  }

  .hotmart-header h2 {
    font-size: 29px;
  }

  .hotmart-header p {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .hotmart-card {
    flex-basis: 86vw;
  }
}
/* =========================================
   EMPRENDE V2 - HERO
========================================= */

.business-hero-v2 {
  padding: 90px 0;
  background: #f8f4ec;
  overflow: hidden;
}

.business-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   CONTENIDO PRINCIPAL
========================================= */

.business-hero-v2-content {
  max-width: 650px;
}

.business-hero-v2-content .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #d4a359;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.business-hero-v2-content h1 {
  margin: 0 0 24px;
  color: #1e293b;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.business-hero-v2-lead {
  max-width: 590px;
  margin: 0 0 30px;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.75;
}


/* =========================================
   BENEFICIOS
========================================= */

.business-mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.business-mini-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e2ddd3;
  border-radius: 10px;
}

.business-mini-feature span {
  font-size: 1.15rem;
}

.business-mini-feature p {
  margin: 0;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;
}


/* =========================================
   BOTONES
========================================= */

.business-hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-hero-v2-actions .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.business-hero-v2-actions .button:hover {
  transform: translateY(-2px);
}


/* BOTÓN PRINCIPAL */

.business-hero-v2-actions .button-primary {
  background: #1e293b;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(30, 41, 59, 0.15);
}

.business-hero-v2-actions .button-primary:hover {
  background: #0f172a;
}


/* BOTÓN SECUNDARIO */

.business-hero-v2-actions .button-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #d8d2c8;
}

.business-hero-v2-actions .button-secondary:hover {
  background: #f1eee8;
}


/* =========================================
   TARJETA DE COSTEO
========================================= */

.business-hero-v2-visual {
  display: flex;
  justify-content: center;
}

.business-calculator-card {
  width: 100%;
  max-width: 430px;
  padding: 32px;
  position: relative;

  background: #ffffff;

  border: 1px solid #ded9d0;
  border-radius: 22px;

  box-shadow:
    0 22px 55px rgba(30, 41, 59, 0.13);
}

.business-calculator-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: #d4a359;

  border-radius: 22px 22px 0 0;
}


/* ETIQUETA */

.calculator-label {
  display: block;

  margin-bottom: 14px;

  color: #d4a359;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 1.2px;
}


/* TÍTULO */

.business-calculator-card h2 {
  margin: 0 0 25px;

  color: #1e293b;

  font-family: "Playfair Display", serif;

  font-size: 1.8rem;
  line-height: 1.2;
}


/* FILAS */

.calculator-row,
.calculator-result,
.calculator-profit {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 11px 0;
}

.calculator-row span,
.calculator-result span,
.calculator-profit span {
  color: #64748b;

  font-size: 0.9rem;
}

.calculator-row strong {
  color: #1e293b;

  font-size: 0.95rem;
}


/* SEPARADOR */

.calculator-divider {
  height: 1px;

  margin: 12px 0;

  background: #e5e1d9;
}


/* PRECIO DE VENTA */

.calculator-result {
  padding: 14px 15px;

  background: #f8f4ec;

  border-radius: 10px;
}

.calculator-result span {
  color: #1e293b;

  font-weight: 600;
}

.calculator-result strong {
  color: #1e293b;

  font-size: 1.25rem;
}


/* UTILIDAD */

.calculator-profit {
  margin-top: 10px;

  padding: 14px 15px;

  background: #eef7ee;

  border-radius: 10px;
}

.calculator-profit span {
  color: #1e293b;

  font-weight: 600;
}

.calculator-profit strong {
  color: #237a35;

  font-size: 1.15rem;
}


/* MENSAJE */

.calculator-note {
  margin-top: 22px;

  padding-top: 18px;

  border-top: 1px solid #e5e1d9;

  color: #64748b;

  font-size: 0.82rem;

  line-height: 1.55;
}


/* AVISO */

.calculator-disclaimer {
  display: block;

  margin-top: 12px;

  color: #94a3b8;

  font-size: 0.68rem;

  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .business-hero-v2 {
    padding: 70px 0;
  }

  .business-hero-v2-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .business-hero-v2-content {
    max-width: 720px;
  }

  .business-hero-v2-visual {
    justify-content: flex-start;
  }

  .business-calculator-card {
    max-width: 520px;
  }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 600px) {

  .business-hero-v2 {
    padding: 55px 0;
  }

  .business-hero-v2-grid {
    gap: 35px;
  }


  /* TÍTULO */

  .business-hero-v2-content h1 {
    font-size: 2.45rem;

    line-height: 1.08;

    letter-spacing: -0.5px;
  }


  /* TEXTO */

  .business-hero-v2-lead {
    font-size: 1rem;

    line-height: 1.65;
  }


  /* BENEFICIOS */

  .business-mini-features {
    display: grid;

    grid-template-columns: 1fr;

    gap: 8px;
  }

  .business-mini-feature {
    width: 100%;

    box-sizing: border-box;
  }


  /* BOTONES */

  .business-hero-v2-actions {
    flex-direction: column;
  }

  .business-hero-v2-actions .button {
    width: 100%;

    box-sizing: border-box;
  }


  /* TARJETA */

  .business-calculator-card {
    padding: 25px 20px;

    border-radius: 18px;
  }

  .business-calculator-card h2 {
    font-size: 1.55rem;
  }

  .calculator-row span,
  .calculator-result span,
  .calculator-profit span {
    font-size: 0.84rem;
  }

}


/* =========================================
   MÓVILES PEQUEÑOS
========================================= */

@media (max-width: 390px) {

  .business-hero-v2-content h1 {
    font-size: 2.25rem;
  }

  .business-calculator-card {
    padding: 23px 17px;
  }

}
/* ROADMAP */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.roadmap-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.roadmap-step {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97706; /* Dorado */
  margin-bottom: 0.5rem;
}

/* CHECKLIST & FAQ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid #e2e8f0;
}

.faq-accordion {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8fafc;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.faq-item summary {
  color: #1e293b;
}

.faq-item p {
  margin-top: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}

.bg-neutral {
  background-color: #f8fafc;
}
/* ESTRATEGIA DE PUBLICIDAD Y MARKETING */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.marketing-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.05);
}

.marketing-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.marketing-card h3 {
  font-size: 1.2rem;
  color: #1e293b; /* Azul Marino */
  margin-bottom: 0.75rem;
}

.marketing-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.marketing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
}

.marketing-list li {
  position: relative;
  padding-left: 1.25rem;
}

.marketing-list li::before {
  content: "•";
  color: #d97706; /* Dorado */
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* CAJA DE CONSEJO DESTACADO */
.marketing-tip-box {
  margin-top: 3rem;
  background: #1e293b; /* Azul Marino Institucional */
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 6px solid #d97706; /* Detalle Dorado */
}

.marketing-tip-content h3 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0.75rem 0;
}

.marketing-tip-content p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
/* =========================================
   BLOQUE DE PUBLICIDAD (GOOGLE ADS)
========================================= */
.ad-banner-section {
  padding: 2rem 0;
  background-color: #f8fafc; /* Fondo neutro */
}

.ad-banner-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1rem 1rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.03);
}

.ad-disclaimer-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* Espacio reservado para evitar saltos bruscos de pantalla (Layout Shift) */
.google-ad-container {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* Ajustes responsive */
@media (min-width: 768px) {
  .ad-banner-section {
    padding: 3rem 0;
  }
  
  .google-ad-container {
    min-height: 250px; /* Tamaño ideal para banners horizontales o adaptables */
  }
}
/* =========================================
   CARTELERA DE FLYERS & B2B
========================================= */
.events-hero {
  padding: 4rem 0 2.5rem;
  background: #1e293b;
  color: #ffffff;
}
.hero-b2b-action {
  margin-top: 1.5rem;
}

.flyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.flyer-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(30, 41, 59, 0.08);
}

/* Evento Destacado / Patrocinado */
.flyer-card.featured-event {
  border: 2px solid #d97706;
}
.featured-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d97706;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.05em;
}

.flyer-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* Formato afiche tradicional */
  background: #f1f5f9;
  overflow: hidden;
}

.flyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(30, 41, 59, 0.85);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.flyer-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.flyer-date-location {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d97706; /* Dorado */
  margin-bottom: 0.5rem;
}

.flyer-details h3 {
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.flyer-details p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.flyer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.organizer-tag {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ESTILOS SECCIÓN B2B (CAPTACIÓN DE EVENTOS) */
.bg-navy {
  background-color: #1e293b;
}

.b2b-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.b2b-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin: 1rem 0;
}

.b2b-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.b2b-benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #e2e8f0;
}

.b2b-card-form {
  background: #ffffff;
  color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.b2b-card-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.b2b-card-form p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.b2b-form .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.b2b-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.b2b-form input {
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
  text-align: center;
}
.legal-section h1 { margin-bottom: 0.5rem; color: #1e293b; }
.legal-section h3 { margin-top: 2rem; margin-bottom: 1rem; color: #d97706; font-family: 'Playfair Display', serif; }
.legal-section p, .legal-section ul { margin-bottom: 1.25rem; line-height: 1.6; color: #475569; }
.legal-section ul { padding-left: 1.5rem; }
.legal-section li { margin-bottom: 0.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; }
/* =========================================
   ESTILOS PARA PÁGINAS LEGALES Y CONTACTO
========================================= */

.bg-neutral {
  background-color: #f8fafc; /* Fondo gris súper claro */
}

/* El contenedor estrecho para lectura cómoda */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* La "hoja de papel" blanca donde va el texto */
.legal-box {
  background-color: #ffffff;
  padding: 3rem 4rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Estilos de la tipografía legal */
.legal-box h1 {
  color: #1e293b;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-box h3 {
  color: #d97706; /* Dorado Gastronautas */
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-box p, .legal-box ul {
  color: #475569;
  line-height: 1.7; /* Mucho espacio entre líneas para leer fácil */
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.legal-box .text-sm {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

/* Adaptación para celulares */
@media (max-width: 768px) {
  .legal-box {
    padding: 2rem 1.5rem;
  }
}