/* ============================================
   Festival Nacional del Piracaldo 2026
   Diseño editorial premium
   ============================================ */

:root {
  --navy: #061827;
  --blue: #0f4778;
  --blue-2: #1678a6;
  --red: #c7352f;
  --red-2: #e85a38;
  --gold: #f5a623;
  --gold-2: #f5a623;
  --amarillo: var(--gold);
  --green: #1d7a5a;
  --paper: #fffaf1;
  --white: #fff;
  --ink: #162233;
  --muted: #667386;
  --gris: var(--muted);
  --line: rgba(15, 71, 120, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 55px rgba(6, 24, 39, 0.14);
  --shadow-strong: 0 36px 90px rgba(6, 24, 39, 0.32);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 71, 120, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(15, 71, 120, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 58%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(244, 180, 71, 0.16), transparent 28%),
    linear-gradient(250deg, rgba(22, 120, 166, 0.12), transparent 30%);
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

/* =========== NAVEGACION =========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(6, 24, 39, 0.82),
    rgba(6, 24, 39, 0.48)
  );
  backdrop-filter: blur(14px);
  transition:
    height 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  border-bottom: 2px solid #f5a623;
}

nav.scrolled {
  height: 70px;
  background: rgba(6, 24, 39, 0.94);
  box-shadow: 0 16px 46px rgba(6, 24, 39, 0.25);
}

.nav-logo {
  width: 236px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(244, 180, 71, 0.32);
}

.nav-links .nav-cta:hover {
  background: #f5a623;
  color: var(--navy);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hamburger span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 3px;
  background: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 14px;
  right: 14px;
  z-index: 999;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(6, 24, 39, 0.97);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 13px 16px;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========== HERO =========== */
#inicio {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 122px 20px 92px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.12) contrast(1.05) brightness(0.75);
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1s ease,
    transform 7s ease;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.13);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    180deg,
    rgba(13, 31, 60, 0.25) 0%,
    rgba(13, 31, 60, 0.72) 100%
  );
  /*
  background:
    linear-gradient(
      90deg,
      rgba(6, 24, 39, 0.98) 0%,
      rgba(6, 24, 39, 0.78) 43%,
      rgba(6, 24, 39, 0.36) 76%,
      rgba(6, 24, 39, 0.72) 100%
    ),
    linear-gradient(180deg, rgba(6, 24, 39, 0.08), rgba(6, 24, 39, 0.94));*/
}

#inicio::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  z-index: -2;
  background: linear-gradient(180deg, transparent, var(--paper));
}

#inicio::after {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 120px);
  bottom: 76px;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(244, 180, 71, 0.28);
  border-radius: 50%;
  opacity: 0.65;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 0.85s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: min(370px, 82vw);
  margin: 0 auto 26px;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.5));
}

.hero-fecha {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(244, 180, 71, 0.38);
  border-radius: 999px;
  background: rgba(244, 180, 71, 0.12);
  color: #f5a623;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-lugar {
  max-width: 740px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 34px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.35px;
  backdrop-filter: blur(8px);
}

.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-p,
.btn-s,
.btn-form {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-p {
  padding: 1.3rem 32px;
  border: 0;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 18px 34px rgba(199, 53, 47, 0.35);
}

.btn-p:hover,
.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(199, 53, 47, 0.42);
}

.btn-s {
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-s:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.scroll-arr {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =========== COUNTDOWN =========== */
#countdown-bar {
  position: relative;
  z-index: 4;
  margin-top: -54px;
  padding: 0 20px 48px;
}

.countdown-inner {
  width: min(100%, 940px);
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(244, 180, 71, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.98), rgba(15, 71, 120, 0.96)),
    var(--navy);
  box-shadow: var(--shadow-strong);
}

.countdown-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.countdown-units {
  display: flex;
  gap: 12px;
}

.cu {
  min-width: 86px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.cu-num {
  color: #f5a623;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.95;
}

.cu-lbl {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

/* =========== SECCIONES =========== */
section {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 20px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-title {
  max-width: 920px;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.5vw, 51px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 730px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

/* =========== SOBRE =========== */
#sobre {
  padding-top: 60px;
  background: linear-gradient(180deg, var(--paper), #fff 44%, #fff);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  min-height: 540px;
}

.about-img-stack::before {
  content: "";
  position: absolute;
  inset: 36px 46px 46px 0;
  border: 1px solid rgba(244, 180, 71, 0.5);
  border-radius: 34px;
}

.about-img-stack::after {
  content: "VI Edicion";
  position: absolute;
  right: 18px;
  bottom: 76px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #f5a623;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(6, 24, 39, 0.24);
}

.about-img-main,
.about-img-sec {
  position: absolute;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-img-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 405px;
}

.about-img-sec {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 260px;
  border: 8px solid #fff;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.stat-card {
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 250, 241, 0.78)
    ),
    #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.1);
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--stat-color, var(--gold));
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: color-mix(
    in srgb,
    var(--stat-color, var(--gold)) 18%,
    transparent
  );
  pointer-events: none;
}

.stat-card:nth-child(1) {
  --stat-color: #f5a623;
}

.stat-card:nth-child(2) {
  --stat-color: #1678a6;
}

.stat-card:nth-child(3) {
  --stat-color: #c7352f;
}

.stat-card:nth-child(4) {
  --stat-color: #1d7a5a;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(6, 24, 39, 0.14);
}

.stat-num {
  position: relative;
  z-index: 1;
  color: var(--stat-color, var(--blue));
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 29px);
  font-weight: 900;
  line-height: 1;
}

.stat-lbl {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #4d5b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.65px;
  line-height: 1.35;
}

.badge-inst {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 12px 8px 0 0;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 24, 39, 0.07);
}

/* =========== HISTORIA =========== */
#historia {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 24, 39, 0.97), rgba(9, 53, 88, 0.94)),
    url("../img/stand6.jpg") center/cover;
  color: #fff;
}

#historia::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 180, 71, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(244, 180, 71, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.32;
}

#historia .section-inner {
  position: relative;
  z-index: 2;
}

.historia-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(82px, 8vw, 138px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.historia-wave-top {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M0 0h1440v72c-113 20-215 22-334 6-151-20-270-54-438-24-140 25-248 70-408 50C271 92 153 57 0 91V0z'/%3E%3C/svg%3E");
}

.historia-wave-bottom {
  bottom: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M0 0h1440v72c-113 20-215 22-334 6-151-20-270-54-438-24-140 25-248 70-408 50C271 92 153 57 0 91V0z'/%3E%3C/svg%3E");
}

.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(72px, 7vw, 128px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-wave-top {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M0 0h1440v72c-113 20-215 22-334 6-151-20-270-54-438-24-140 25-248 70-408 50C271 92 153 57 0 91V0z'/%3E%3C/svg%3E");
}

.section-wave-bottom {
  bottom: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M0 0h1440v72c-113 20-215 22-334 6-151-20-270-54-438-24-140 25-248 70-408 50C271 92 153 57 0 91V0z'/%3E%3C/svg%3E");
}

#sobre,
#galeria,
#noticias {
  position: relative;
  overflow: hidden;
}

#sobre .section-inner,
#galeria .section-inner,
#noticias .section-inner {
  position: relative;
  z-index: 2;
}

#sobre,
#galeria,
#noticias,
#expositores {
  padding-top: clamp(72px, 7vw, 110px);
  padding-bottom: clamp(72px, 7vw, 110px);
}

#sobre,
#galeria,
#noticias {
  padding-top: clamp(84px, 8vw, 126px);
  padding-bottom: clamp(84px, 8vw, 126px);
}

#historia .section-title {
  color: #fff;
}
#historia .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.history-link-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 24px;
  border: 1px solid rgba(245, 166, 35, 0.42);
  border-radius: 999px;
  background: #f5a623;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(245, 166, 35, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.history-link-btn:hover {
  transform: translateY(-2px);
  background: #ffc04d;
  box-shadow: 0 24px 44px rgba(245, 166, 35, 0.32);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gold),
    rgba(22, 120, 166, 0.7),
    rgba(255, 255, 255, 0.08)
  );
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tl-dot {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.tl-dot.ed1 {
  background: var(--red);
}
.tl-dot.pause {
  background: #334355;
  color: rgba(255, 255, 255, 0.55);
}
.tl-dot.ed2,
.tl-dot.ed3 {
  background: var(--blue-2);
}
.tl-dot.ed4 {
  background: var(--green);
}
.tl-dot.ed5 {
  background: var(--gold);
  color: var(--navy);
}
.tl-dot.ed6 {
  background: linear-gradient(135deg, var(--red), var(--gold));
}

.tl-body {
  padding: 24px 27px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(12px);
}

.tl-year {
  margin-bottom: 7px;
  color: #f5a623;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.tl-ed {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.1;
}

.tl-meta {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.tl-desc {
  color: rgba(255, 255, 255, 0.81);
  font-size: 14px;
  line-height: 1.72;
}

.tl-num {
  color: #f5a623;
  font-size: 22px;
  font-weight: 900;
}

/* =========== PÁGINA HISTORIA =========== */
.history-page {
  background: #fff;
}

.history-hero {
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: 130px 20px 70px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(6, 24, 39, 0.96),
      rgba(6, 24, 39, 0.62),
      rgba(6, 24, 39, 0.28)
    ),
    linear-gradient(180deg, rgba(6, 24, 39, 0.15), rgba(6, 24, 39, 0.92)),
    url("../img/historia.jpg") center/cover;
  color: #fff;
}

.history-hero-inner,
.history-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.history-hero h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.history-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.65;
}

.history-main {
  padding: clamp(76px, 8vw, 118px) 20px;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.history-card {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.history-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.history-card h2 {
  margin-top: 22px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: 31px;
  line-height: 1.05;
}

.history-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.history-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.history-stat {
  padding: 14px;
  border-radius: 18px;
  background: #fff8ea;
  color: var(--blue);
}

.history-stat strong {
  display: block;
  color: var(--red);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1;
}

.history-stat span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.history-copy {
  display: grid;
  gap: 22px;
}

.history-copy p,
.history-copy li {
  color: #445368;
  font-size: 17px;
  line-height: 1.9;
}

.history-copy h2 {
  margin-top: 14px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 3.4vw, 45px);
  line-height: 1.05;
}

.history-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.history-highlight {
  padding: clamp(24px, 4vw, 34px);
  border-left: 5px solid #f5a623;
  border-radius: 0 26px 26px 0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 24, 39, 0.08);
}

.history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 930px) {
  .history-layout {
    grid-template-columns: 1fr;
  }

  .history-card {
    position: relative;
    top: auto;
  }
}

/* =========== GASTRONOMIA =========== */
#gastronomia {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.gastro-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: stretch;
  margin-top: 46px;
}

.gastro-intro > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gastro-intro p {
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.88 !important;
}

.chip-pez,
.cat-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 71, 120, 0.13);
  border-radius: 999px;
  background: #fff8ea;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.gastro-foto-hero {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.platos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  grid-auto-rows: 232px;
  gap: 16px;
  margin-top: 18px !important;
}

.plato-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(6, 24, 39, 0.1);
  cursor: pointer;
}

.plato-card:nth-child(1) {
  grid-row: span 2;
}
.plato-card:nth-child(5) {
  grid-column: span 2;
}

.plato-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.plato-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.plato-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 24, 39, 0.9));
}

.plato-name {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* =========== GALERIA =========== */
#galeria {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr 0.88fr;
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 44px;
}

.g-item {
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(6, 24, 39, 0.1);
  cursor: pointer;
}

.g-item.tall {
  grid-row: span 2;
}
.g-item.wide {
  grid-column: span 2;
}

.g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item:nth-child(7) {
  grid-column: span 2;
}

.g-item:nth-child(13) {
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.g-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent, rgba(6, 24, 39, 0.32));
  transition: background 0.25s ease;
}

.g-zoom {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 22px;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.g-item:hover img {
  transform: scale(1.06);
}
.g-item:hover .g-overlay {
  background: rgba(6, 24, 39, 0.34);
}
.g-item:hover .g-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========== NOTICIAS =========== */
#noticias {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 39, 0.09);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 24px 58px rgba(6, 24, 39, 0.14);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-featured {
  grid-column: span 2;
}

.news-featured img {
  height: 300px;
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-body h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.08;
}

.news-source {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.news-body time {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.news-body p {
  margin: 14px 0 20px;
  color: #536173;
  font-size: 14px;
  line-height: 1.75;
}

.news-body a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.news-body a:hover {
  background: #f5a623;
  color: var(--navy);
  transform: translateY(-1px);
}

/* =========== PROGRAMA =========== */
#programa {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 71, 120, 0.96), rgba(6, 24, 39, 0.98)),
    url("../img/stand8.jpg") center/cover;
  color: #fff;
}

#programa .section-title {
  color: #fff;
}
#programa .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.programa-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.programa-timeline,
.programa-info {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.052)
  );
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.programa-timeline {
  padding: 18px 28px;
}

.pt-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-item:last-child {
  border-bottom: 0;
}

.pt-hora {
  color: #f5a623;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.pt-desc {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.pt-highlight {
  margin: 7px -12px;
  padding: 18px 12px;
  border: 1px solid rgba(244, 180, 71, 0.28);
  border-radius: 18px;
  background: rgba(244, 180, 71, 0.13);
}

.programa-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.info-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 16px;
  background: rgba(244, 180, 71, 0.16);
  font-size: 25px;
}

.info-card-title {
  margin-bottom: 8px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.info-card-val {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.info-card-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

/* =========== EXPOSITORES =========== */
#expositores {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.expo-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  margin-top: 48px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 34px;
  background:
    linear-gradient(105deg, rgba(6, 24, 39, 0.96), rgba(6, 24, 39, 0.68)),
    url("../img/stand2.jpg") center/cover;
  box-shadow: var(--shadow-strong);
}

.expo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.expo-banner-txt,
.expo-specs {
  position: relative;
}

.expo-banner-txt h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.expo-banner-txt p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.expo-specs {
  display: grid;
  gap: 12px;
}

.expo-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.expo-spec-lbl {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.expo-spec-val {
  color: #f5a623;
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.concurso-box {
  margin-top: 24px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.concurso-box h3 {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
}

.concurso-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.concurso-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid rgba(15, 71, 120, 0.16);
  border-radius: 16px;
  background: #fbfcfe;
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 120, 166, 0.12);
}

.btn-form {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 16px 32px rgba(199, 53, 47, 0.3);
}

/* =========== FOOTER =========== */
footer {
  padding: 64px 20px 26px;
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.98), rgba(8, 42, 72, 0.96)),
    url("../img/stand7.jpg") center/cover;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(170px, 0.55fr) minmax(
      220px,
      0.75fr
    );
  gap: 54px;
  margin-bottom: 42px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #f5a623;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.soc-btn:hover {
  background: var(--blue-2);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom a {
  color: #f5a623;
  text-decoration: none;
}

/* =========== LIGHTBOX =========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1180px);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.lb-close {
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.lb-prev,
.lb-next {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 34px;
}

.lb-prev {
  left: 22px;
}
.lb-next {
  right: 22px;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1120px) {
  .nav-logo {
    width: 205px;
  }
  .nav-links a {
    padding: 0 8px;
    font-size: 9px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 930px) {
  nav {
    height: 72px;
  }
  nav.scrolled {
    height: 66px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    top: 82px;
  }

  #inicio {
    min-height: 860px;
    padding-top: 112px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo,
  .hero-lugar {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges,
  .hero-btns {
    justify-content: center;
  }

  .about-grid,
  .gastro-intro,
  .programa-grid,
  .expo-banner {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    width: min(100%, 620px);
    min-height: 490px;
    margin: 0 auto;
    order: 2;
  }

  .gallery-grid,
  .platos-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .plato-card:nth-child(1),
  .plato-card:nth-child(5),
  .g-item:nth-child(1),
  .g-item:nth-child(7),
  .g-item:nth-child(13),
  .g-item.tall,
  .g-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .programa-info {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-featured {
    grid-column: span 2;
  }

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

@media (max-width: 700px) {
  section {
    padding: 72px 16px;
  }

  .section-title {
    font-size: clamp(31px, 10vw, 44px);
  }

  .section-subtitle {
    font-size: 15px;
  }

  #inicio {
    min-height: 780px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-fecha {
    display: flex;
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .hero-badges {
    display: none;
  }

  .hero-btns a {
    width: 100%;
    max-width: 360px;
  }

  .countdown-inner {
    gap: 14px;
    border-radius: 22px;
  }

  .countdown-label {
    width: 100%;
    text-align: center;
  }

  .countdown-units {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .cu {
    min-width: 0;
    flex: 1;
    padding: 10px 6px;
  }

  .cu-num {
    font-size: 30px;
  }

  .about-img-stack {
    min-height: 380px;
  }
  .about-img-stack::before {
    inset: 24px 28px 36px 0;
  }
  .about-img-stack::after {
    right: 8px;
    bottom: 60px;
  }

  .about-img-main {
    height: 288px;
    width: 82%;
  }

  .about-img-sec {
    height: 184px;
    width: 64%;
    border-width: 6px;
  }

  .about-stats,
  .programa-info,
  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 24px;
  }

  .tl-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .tl-dot {
    width: 50px;
    height: 50px;
    border-width: 3px;
    font-size: 11px;
  }

  .tl-body {
    padding: 18px;
    border-radius: 20px;
  }

  .tl-ed {
    font-size: 20px;
  }
  .tl-meta {
    font-size: 12px;
  }

  .gastro-intro > div:first-child,
  .concurso-box {
    padding: 24px;
    border-radius: 24px;
  }

  .gastro-foto-hero {
    min-height: 330px;
  }

  .gallery-grid,
  .platos-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    grid-column: auto;
  }

  .news-card img,
  .news-featured img {
    height: 220px;
  }

  .plato-card[style] {
    grid-column: auto !important;
    aspect-ratio: auto !important;
  }

  .programa-timeline {
    padding: 14px 18px;
  }

  .pt-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .pt-hora {
    font-size: 16px;
  }

  .expo-banner {
    border-radius: 26px;
  }

  .expo-spec {
    align-items: flex-start;
    flex-direction: column;
  }

  .expo-spec-val {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-logo {
    width: 180px;
  }

  .hero-logo {
    width: min(305px, 84vw);
  }

  .btn-p,
  .btn-s,
  .btn-form {
    min-height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 11px;
  }

  .cu-num {
    font-size: 26px;
  }
  .cu-lbl {
    letter-spacing: 1px;
  }

  .gallery-grid,
  .platos-grid {
    grid-auto-rows: 230px;
  }

  .lb-prev,
  .lb-next {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Evita que el countdown se monte encima */
.countdown-bar {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

/* ═══════════ APOYAN / AUSPICIAN PRO ═══════════ */
.sponsors-strip {
  position: relative;
  padding: clamp(54px, 6vw, 82px) 22px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(245, 166, 35, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 255, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(135deg, #061827 0%, #0b2638 52%, #07131f 100%);
  overflow: hidden;
}

.sponsors-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.sponsors-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.14);
  filter: blur(80px);
  right: -120px;
  bottom: -160px;
}

.sponsors-head {
  position: relative;
  z-index: 2;
  max-width: min(100%, 1180px);
  margin: 0 auto 32px;
  text-align: left;
}

.sponsors-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.1);
  color: #f5a623;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sponsors-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.sponsors-head p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.sponsors-inner {
  position: relative;
  z-index: 2;
  max-width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.sponsor-block {
  position: relative;
  min-height: clamp(260px, 22vw, 330px);
  display: grid;
  grid-template-columns: minmax(135px, 0.34fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(245, 166, 35, 0.11), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.sponsor-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.18),
    transparent 42%
  );
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.sponsor-block:hover::after {
  opacity: 1;
}

.sponsor-block:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.38);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(245, 166, 35, 0.09);
}

.sponsor-featured {
  order: 0;
  grid-template-columns: minmax(135px, 0.34fr) minmax(0, 1fr);
  min-height: clamp(260px, 22vw, 330px);
  padding: clamp(18px, 2vw, 30px);
  border-color: rgba(245, 166, 35, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(245, 166, 35, 0.15), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(245, 166, 35, 0.07);
}

.sponsor-featured:hover {
  border-color: rgba(245, 166, 35, 0.72);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(245, 166, 35, 0.24) inset,
    0 0 62px rgba(245, 166, 35, 0.2);
}

.sponsor-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: clamp(8px, 1vw, 14px) 0;
  margin-bottom: 0;
}

.sponsor-title span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.42);
  color: #f5a623;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.sponsor-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 1px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.sponsor-level {
  display: none;
  margin-bottom: 3px;
  color: #f5a623;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.sponsor-logos {
  position: relative;
  z-index: 3;
  min-height: 100%;
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 253, 0.98)),
    #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.sponsor-logos::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(15, 71, 120, 0.07);
  border-radius: 22px;
  pointer-events: none;
}

.sponsor-logos::after {
  content: "Visitar";
  position: absolute;
  right: clamp(16px, 1.8vw, 24px);
  bottom: clamp(16px, 1.8vw, 24px);
  z-index: 5;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(6, 24, 39, 0.88);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 14px 28px rgba(6, 24, 39, 0.22);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  pointer-events: none;
}

.sponsor-logos a {
  position: absolute;
  inset: clamp(8px, 1vw, 12px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.sponsor-logos a.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sponsor-logos:hover,
.sponsor-logos:focus-within,
.sponsor-logos:has(a:hover),
.sponsor-logos:has(a:focus-visible) {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(15, 71, 120, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.22);
}

.sponsor-logos:hover::after,
.sponsor-logos:focus-within::after,
.sponsor-logos:has(a:hover)::after,
.sponsor-logos:has(a:focus-visible)::after {
  opacity: 1;
  transform: translateY(0);
}

.sponsor-logos a:focus-visible {
  border-radius: 20px;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.28);
}

.sponsor-logos img {
  display: block;
  width: auto;
  max-width: 98%;
  max-height: clamp(150px, 14vw, 220px);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(6, 24, 39, 0.16));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.sponsor-featured .sponsor-title {
  padding: clamp(8px, 1vw, 14px) 0;
  margin-bottom: 0;
}

.sponsor-featured .sponsor-title span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.16);
  color: #f5a623;
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(245, 166, 35, 0.28);
}

.sponsor-featured .sponsor-title h3 {
  font-size: clamp(29px, 4vw, 1px);
  line-height: 1;
}

.sponsor-featured .sponsor-logos {
  min-height: 100%;
  border: 2px solid rgba(245, 166, 35, 0.45);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(245, 166, 35, 0.11),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 250, 241, 0.98)),
    #fff;
  box-shadow:
    inset 0 0 0 1px rgba(245, 166, 35, 0.12),
    0 24px 58px rgba(0, 0, 0, 0.24);
}

.sponsor-featured .sponsor-logos::before {
  inset: 14px;
  border-color: rgba(245, 166, 35, 0.2);
}

.sponsor-featured .sponsor-logos::after {
  content: "Visitar";
  right: clamp(16px, 1.8vw, 24px);
  bottom: clamp(16px, 1.8vw, 24px);
  background: #f5a623;
  color: var(--navy);
  opacity: 0.88;
  transform: translateY(0);
  box-shadow: 0 14px 28px rgba(245, 166, 35, 0.28);
}

.sponsor-featured .sponsor-logos a {
  inset: clamp(8px, 1vw, 12px);
}

.sponsor-featured .sponsor-logos img {
  max-width: 98%;
  max-height: clamp(150px, 14vw, 220px);
  transform: none;
}

.sponsor-logos a:hover img {
  filter: drop-shadow(0 16px 30px rgba(6, 24, 39, 0.2));
  transform: scale(1.08);
}

.sponsor-logos a:active img {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .sponsors-strip {
    padding: 50px 14px;
  }

  .sponsors-head {
    text-align: center;
  }

  .sponsors-head p {
    margin-left: auto;
    margin-right: auto;
  }

  .sponsors-inner {
    grid-template-columns: 1fr;
  }

  .sponsor-block {
    min-height: 440px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
  }

  .sponsor-featured {
    min-height: 440px;
  }

  .sponsor-title {
    min-height: 116px;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin-bottom: 12px;
  }

  .sponsor-title h3 {
    font-size: 40px;
  }

  .sponsor-featured .sponsor-title h3 {
    font-size: 40px;
  }

  .sponsor-logos {
    min-height: 270px;
    padding: 8px;
  }

  .sponsor-featured .sponsor-logos {
    min-height: 270px;
  }

  .sponsor-logos img {
    max-width: 98%;
    max-height: 230px;
    width: auto;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 10px 20px rgba(6, 24, 39, 0.14));
    transition: all 0.35s ease;
  }

  .sponsor-logos a:hover img {
    filter: drop-shadow(0 14px 24px rgba(6, 24, 39, 0.18));
    transform: scale(1.05);
  }

  .sponsor-logos a {
    inset: 8px;
  }

  .sponsor-featured .sponsor-logos a {
    inset: 8px;
  }

  .sponsor-featured .sponsor-logos img {
    max-height: 230px;
  }
}

/* ============================================
   Refinamiento final web_pira_3
   Base original + acabado premium para cliente
   ============================================ */
:root {
  --navy: #211236;
  --blue: #4b2e83;
  --blue-2: #6b46a3;
  --red: #d94a2f;
  --red-2: #f26a3d;
  --gold: #f59a00;
  --gold-2: #ffb326;
  --green: #0c8f24;
  --paper: #fff8ed;
  --ink: #201728;
  --muted: #6c6074;
  --line: rgba(75, 46, 131, 0.16);
  --shadow: 0 22px 60px rgba(33, 18, 54, 0.13);
  --shadow-strong: 0 38px 96px rgba(33, 18, 54, 0.33);
}

body {
  background:
    radial-gradient(circle at 8% 16%, rgba(245, 154, 0, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(12, 143, 36, 0.08), transparent 26rem),
    var(--paper);
}

body::before {
  background:
    linear-gradient(90deg, rgba(75, 46, 131, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(75, 46, 131, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

nav {
  height: 86px;
  border-bottom: 1px solid rgba(245, 154, 0, 0.35);
  background:
    linear-gradient(180deg, rgba(33, 18, 54, 0.94), rgba(33, 18, 54, 0.76));
  box-shadow: 0 14px 42px rgba(33, 18, 54, 0.18);
}

nav.scrolled {
  height: 74px;
  background: rgba(33, 18, 54, 0.96);
}

.nav-logo {
  width: 212px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.95px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.nav-links .nav-cta {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffc75b);
  box-shadow: 0 14px 30px rgba(245, 154, 0, 0.28);
}

#inicio {
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 100px;
}

.hero-bg-slide {
  filter: saturate(1.1) contrast(1.06) brightness(0.7);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 32%, rgba(245, 154, 0, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(33, 18, 54, 0.36) 0%, rgba(33, 18, 54, 0.84) 100%),
    linear-gradient(90deg, rgba(33, 18, 54, 0.72), rgba(33, 18, 54, 0.28), rgba(33, 18, 54, 0.72));
}

#inicio::before {
  height: 190px;
  background: linear-gradient(180deg, transparent, var(--paper) 86%);
}

#inicio::after {
  border-color: rgba(245, 154, 0, 0.28);
}

.hero-content {
  max-width: 980px;
}

.hero-logo {
  width: min(415px, 82vw);
  margin-bottom: 20px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.46));
}

.hero-fecha {
  border-color: rgba(245, 154, 0, 0.5);
  background: rgba(245, 154, 0, 0.15);
  color: #ffd38a;
}

.hero-lugar {
  max-width: 780px;
  margin-top: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.badge {
  min-height: 38px;
  padding: 0 15px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.115);
}

.btn-p,
.btn-form {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 18px 38px rgba(217, 74, 47, 0.34);
}

.btn-s {
  background: rgba(255, 255, 255, 0.1);
}

#countdown-bar {
  margin-top: -58px;
}

.countdown-inner {
  border-color: rgba(245, 154, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(33, 18, 54, 0.98), rgba(75, 46, 131, 0.96)),
    var(--navy);
}

.cu-num,
.tl-year,
.tl-num,
.history-link-btn,
.footer-bottom a {
  color: var(--gold);
}

.section-tag {
  color: var(--red);
}

.section-title {
  color: var(--blue);
  letter-spacing: 0;
}

#sobre {
  background: linear-gradient(180deg, var(--paper), #fff 48%, #fff);
}

@keyframes aboutRouteLeft {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(12px, 10px, 0) rotate(1deg);
  }
}

@keyframes aboutRouteRight {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-14px, 9px, 0) rotate(-2deg);
  }
}

@keyframes aboutRouteBridge {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(-16px, 8px, 0) rotate(2deg);
  }
}

@keyframes aboutRouteHistory {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(14px, -7px, 0) rotate(-2deg);
  }
}

.about-img-stack::before {
  border-color: rgba(245, 154, 0, 0.42);
}

.about-img-main,
.about-img-sec,
.gastro-foto-hero,
.plato-card,
.g-item,
.news-card,
.info-card,
.stat-card {
  backface-visibility: hidden;
}

.stat-card {
  border-color: rgba(75, 46, 131, 0.1);
}

.stat-card:nth-child(1) { --stat-color: var(--gold); }
.stat-card:nth-child(2) { --stat-color: var(--blue-2); }
.stat-card:nth-child(3) { --stat-color: var(--red); }
.stat-card:nth-child(4) { --stat-color: var(--green); }

.badge-inst {
  border-color: rgba(75, 46, 131, 0.14);
  color: var(--blue);
}

#historia {
  background:
    linear-gradient(120deg, rgba(33, 18, 54, 0.97), rgba(75, 46, 131, 0.92)),
    url("../img/stand6.jpg") center/cover;
}

body.dark-mode .historia-wave-top {
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111018' d='M0 0h1440v55c-93 18-168 18-266 3-130-20-212-41-356-16-124 22-203 57-343 44C332 73 252 28 116 38 65 42 30 53 0 64V0z'/%3E%3C/svg%3E");
}

body.dark-mode .historia-wave-bottom {
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111018' d='M0 0h1440v55c-93 18-168 18-266 3-130-20-212-41-356-16-124 22-203 57-343 44C332 73 252 28 116 38 65 42 30 53 0 64V0z'/%3E%3C/svg%3E");
}

body.dark-mode .section-wave-top,
body.dark-mode .section-wave-bottom {
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111018' d='M0 0h1440v72c-113 20-215 22-334 6-151-20-270-54-438-24-140 25-248 70-408 50C271 92 153 57 0 91V0z'/%3E%3C/svg%3E");
}

.tl-body {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.tl-dot.ed2,
.tl-dot.ed3 {
  background: var(--blue-2);
}

.tl-dot.ed4 {
  background: var(--green);
}

.tl-dot.ed5 {
  background: var(--gold);
}

#gastronomia {
  background:
    radial-gradient(circle at 15% 18%, rgba(12, 143, 36, 0.08), transparent 24rem),
    #fff;
}

.gastro-intro > div:first-child {
  border-color: rgba(75, 46, 131, 0.12);
}

.chip-pez {
  border-color: rgba(75, 46, 131, 0.13);
}

.plato-card,
.g-item,
.news-card {
  box-shadow: 0 18px 44px rgba(33, 18, 54, 0.11);
}

.plato-card:hover,
.g-item:hover,
.news-card:hover {
  transform: translateY(-4px);
}

.news-card {
  border-color: rgba(75, 46, 131, 0.1);
}

.news-card a,
.news-source {
  color: var(--red);
}

#programa {
  background:
    linear-gradient(120deg, rgba(33, 18, 54, 0.97), rgba(75, 46, 131, 0.93)),
    url("../img/hero-fuegos.jpg") center/cover;
}

.pt-hora,
.info-card-val {
  color: var(--gold);
}

.pt-highlight {
  border-color: rgba(245, 154, 0, 0.34);
  background: rgba(245, 154, 0, 0.11);
}

.expo-banner {
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 154, 0, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--blue), var(--navy));
}

footer {
  background:
    linear-gradient(135deg, rgba(33, 18, 54, 0.98), rgba(75, 46, 131, 0.94)),
    url("../img/stand7.jpg") center/cover;
}

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

.soc-btn:hover {
  background: var(--red);
}

.sponsors-strip {
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 154, 0, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(12, 143, 36, 0.11), transparent 30%),
    linear-gradient(135deg, #211236 0%, #321b52 52%, #160d24 100%);
}

.sponsor-title h3,
.sponsor-featured .sponsor-title h3 {
  font-size: clamp(26px, 3.6vw, 42px);
}

.sponsor-logos img {
  max-height: clamp(130px, 11vw, 190px);
}

@media (max-width: 1120px) {
  .nav-logo {
    width: 190px;
  }
}

@media (max-width: 930px) {
  nav {
    height: 74px;
  }

  .mobile-menu {
    top: 78px;
  }

  .nav-logo {
    width: 170px;
    height: 54px;
  }

  #inicio {
    min-height: 820px;
  }

  .hero-logo {
    width: min(350px, 78vw);
  }
}

@media (max-width: 700px) {
  #inicio {
    min-height: 760px;
    padding-top: 104px;
    padding-bottom: 84px;
  }

  .hero-logo {
    width: min(300px, 78vw);
    margin-bottom: 18px;
  }

  .hero-lugar {
    margin-bottom: 22px;
  }

  .about-img-main,
  .about-img-sec,
  .gastro-foto-hero,
  .news-card img,
  .news-featured img {
    border-radius: 22px;
  }

  .sponsor-title h3,
  .sponsor-featured .sponsor-title h3 {
    font-size: 34px;
  }
}

@media (max-width: 430px) {
  .nav-logo {
    width: 150px;
  }

  .hero-logo {
    width: min(270px, 76vw);
  }
}

/* Around-inspired clean header/footer */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, .91);
  border-bottom: 1px solid rgba(33, 18, 54, .08);
  box-shadow: 0 12px 34px rgba(33, 18, 54, .08);
  backdrop-filter: blur(18px);
}

nav.site-nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 42px rgba(33, 18, 54, .12);
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

nav.site-nav .nav-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: none;
  transform: none;
}

nav.site-nav .nav-links {
  position: static;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.site-nav .nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: rgba(33, 18, 54, .72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
}

nav.site-nav .nav-links a:hover {
  color: var(--navy);
  background: rgba(245, 154, 0, .12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

nav.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #ffb739);
  border: 1px solid rgba(245, 154, 0, .42);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(245, 154, 0, .25);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

nav.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(245, 154, 0, .32);
}

nav.site-nav .hamburger {
  position: static;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(33, 18, 54, .1);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(33, 18, 54, .08);
}

nav.site-nav .hamburger span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.mobile-menu {
  top: 84px;
  left: 50%;
  right: auto;
  width: min(360px, calc(100% - 32px));
  transform: translate(-50%, -16px);
  border: 1px solid rgba(33, 18, 54, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(33, 18, 54, .18);
  padding: 14px;
}

.mobile-menu.open {
  transform: translate(-50%, 0);
}

.mobile-menu a {
  color: rgba(33, 18, 54, .78);
  border-bottom: 0;
  border-radius: 14px;
  font-weight: 900;
}

.mobile-menu a:hover {
  color: var(--navy);
  background: rgba(245, 154, 0, .12);
}

.mobile-menu .mobile-cta {
  margin-top: 6px;
  justify-content: center;
  color: #fff;
  background: var(--gold);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 154, 0, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f4fb 100%);
  color: var(--navy);
  border-top: 1px solid rgba(33, 18, 54, .08);
  padding: 74px 0 28px;
}

.site-footer .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-doodles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.footer-doodles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  aspect-ratio: 1 / 1;
  opacity: .42;
  background-image: var(--img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter:
    invert(1) grayscale(1) brightness(1.62) opacity(.88)
    drop-shadow(0 0 18px rgba(247, 146, 30, .48))
    drop-shadow(0 0 36px rgba(247, 146, 30, .22))
    drop-shadow(0 18px 30px rgba(255, 255, 255, .1));
  transform: rotate(var(--r));
  will-change: transform, opacity;
}

.footer-doodles span::before {
  content: "";
  position: absolute;
  inset: -38%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(247, 146, 30, .34) 0%, rgba(247, 146, 30, .16) 34%, transparent 70%),
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, .18), transparent 58%);
  filter: blur(10px);
  opacity: 1;
}

.footer-doodles .fd-fish {
  animation: footerFishSwim 9s ease-in-out infinite;
  animation-delay: var(--d);
  transform-origin: 52% 50%;
}

.footer-doodles .fd-fish-fast {
  animation-duration: 7.5s;
}

.footer-doodles .fd-wave {
  animation: footerWaveDrift 8.5s ease-in-out infinite;
  animation-delay: var(--d);
}

.footer-doodles .fd-float {
  animation: footerDoodleFloat 10s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes footerFishSwim {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--r)) scaleX(1);
    opacity: .32;
  }
  25% {
    transform: translate3d(18px, -8px, 0) rotate(calc(var(--r) + 4deg)) scaleX(1.03);
    opacity: .52;
  }
  50% {
    transform: translate3d(36px, 6px, 0) rotate(calc(var(--r) - 3deg)) scaleX(.98);
    opacity: .42;
  }
  75% {
    transform: translate3d(14px, 10px, 0) rotate(calc(var(--r) + 2deg)) scaleX(1.02);
    opacity: .54;
  }
}

@keyframes footerWaveDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }
  50% {
    transform: translate3d(-12px, 9px, 0) rotate(calc(var(--r) + 3deg));
  }
}

@keyframes footerDoodleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }
  50% {
    transform: translate3d(8px, -14px, 0) rotate(calc(var(--r) - 5deg));
  }
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, .7fr));
  gap: 46px;
  align-items: start;
}

.site-footer .footer-brand {
  max-width: 360px;
}

.site-footer .footer-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
  margin: 0 0 18px;
  filter: none;
}

.site-footer .footer-desc,
.site-footer .footer-contact p {
  color: rgba(33, 18, 54, .68);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.site-footer .footer-col h4 {
  color: var(--navy);
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 900;
}

.site-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer .footer-col a {
  color: rgba(33, 18, 54, .66);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer .footer-col a:hover {
  color: var(--gold);
}

.site-footer .footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer .footer-contact p {
  margin-bottom: 2px;
}

.site-footer .footer-cta {
  width: fit-content;
  margin-top: 8px;
  padding: 11px 18px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 999px;
}

.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer .soc-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(33, 18, 54, .1);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(33, 18, 54, .08);
  text-decoration: none;
  font-weight: 900;
}

.site-footer .soc-btn:hover {
  color: #fff;
  background: var(--gold);
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(33, 18, 54, .1);
  color: rgba(33, 18, 54, .58);
  font-size: 13px;
}

.site-footer .footer-bottom a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

body.dark-mode .footer-doodles span {
  opacity: .42;
  filter:
    invert(1) grayscale(1) brightness(1.7) opacity(.9)
    drop-shadow(0 0 18px rgba(247, 146, 30, .5))
    drop-shadow(0 0 38px rgba(247, 146, 30, .24))
    drop-shadow(0 18px 30px rgba(255, 255, 255, .1));
  mix-blend-mode: screen;
}

body.dark-mode .footer-doodles span::before {
  background:
    radial-gradient(circle, rgba(247, 146, 30, .34) 0%, rgba(247, 146, 30, .16) 34%, transparent 70%),
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, .18), transparent 58%);
  opacity: 1;
}

@media (max-width: 1040px) {
  nav.site-nav .nav-links {
    display: none;
  }

  nav.site-nav .hamburger {
    display: inline-flex;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  nav.site-nav {
    padding: 10px 0;
  }

  .nav-shell,
  .site-footer .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  nav.site-nav .nav-logo {
    width: 54px;
    height: 54px;
  }

  nav.site-nav .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .mobile-menu {
    top: 74px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-doodles span {
    width: calc(var(--s) * .78);
    opacity: .28;
  }

  .footer-doodles span:nth-child(n+12) {
    display: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    margin-top: 36px;
  }
}

/* Around exact typography and navbar structure */
html,
body,
button,
input,
select,
textarea,
a,
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.stat-num,
.cu-num,
.tl-ed,
.history-hero h1,
.history-card h2 {
  font-family: "Inter", sans-serif !important;
}

body {
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  min-height: 76px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(33, 18, 54, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
  backdrop-filter: blur(18px);
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-nav.navbar.scrolled {
  min-height: 68px;
  height: auto;
  padding: 8px 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 .5rem 1.25rem rgba(33, 18, 54, .08);
}

.site-nav .container.nav-shell {
  width: min(1320px, calc(100% - 48px));
  max-width: 1320px;
  min-height: 48px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.site-nav .navbar-brand.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1rem;
  padding: 0;
  color: #121519;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: none;
}

.site-nav .navbar-nav.nav-links {
  position: static;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.site-nav .nav-item {
  display: flex;
  align-items: center;
}

.site-nav .navbar-nav .nav-link {
  display: block;
  min-height: auto;
  padding: .725rem 1rem;
  border-radius: 0;
  color: #576071;
  background: transparent;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav .navbar-nav .nav-link.active,
.site-nav .navbar-nav .nav-link:hover {
  color: var(--gold);
  background: transparent;
}

.site-nav .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav .btn.nav-cta {
  min-height: 36px;
  padding: .475rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: .5rem;
  color: #fff;
  background: var(--gold);
  box-shadow: 0 .5rem 1.125rem rgba(245, 154, 0, .22);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transform: none;
}

.site-nav .btn.nav-cta:hover {
  color: #fff;
  background: #e58f00;
  box-shadow: 0 .625rem 1.25rem rgba(245, 154, 0, .3);
  transform: none;
}

.site-nav .navbar-toggler.hamburger {
  position: static;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: .5rem;
  background: transparent;
  box-shadow: none;
}

.site-nav .navbar-toggler.hamburger span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #121519;
}

@media (max-width: 1040px) {
  .site-nav .navbar-nav.nav-links {
    display: none;
  }

  .site-nav .navbar-toggler.hamburger {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .site-nav.navbar {
    min-height: 68px;
    padding: 8px 0;
  }

  .site-nav .container.nav-shell {
    width: min(100% - 28px, 1320px);
  }

  .site-nav .nav-logo {
    width: 48px;
    height: 48px;
  }

  .site-nav .btn.nav-cta {
    min-height: 34px;
    padding: .4rem .825rem;
    font-size: .8125rem;
  }
}

/* Gastronomia travel-style showcase */
#gastronomia {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(247, 146, 30, .12), transparent 25rem),
    radial-gradient(circle at 10% 82%, rgba(75, 46, 131, .08), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}

#gastronomia::before {
  content: "";
  position: absolute;
  inset: 6% auto auto -80px;
  width: 230px;
  height: 420px;
  pointer-events: none;
  opacity: .42;
  border: 2px dashed rgba(247, 146, 30, .32);
  border-right: 0;
  border-radius: 55% 0 0 55%;
  transform: rotate(-10deg);
}

#gastronomia::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.gastro-doodles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.gastro-doodles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  aspect-ratio: 1 / 1;
  opacity: .24;
  background-image: var(--img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(var(--r));
  filter: drop-shadow(0 14px 24px rgba(75, 46, 131, .035));
  animation: gastroDoodleFloat 7.5s ease-in-out infinite;
  animation-delay: var(--d);
}

.gastro-doodles span:nth-child(3n) {
  animation-duration: 9s;
}

.gastro-doodles span:nth-child(4n) {
  animation-direction: reverse;
}

.gastro-doodles span:nth-child(5n) {
  animation-duration: 10.5s;
}

@keyframes gastroDoodleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--r)) scale(1);
  }
  50% {
    transform: translate3d(10px, -16px, 0) rotate(calc(var(--r) + 5deg)) scale(1.04);
  }
}

.gastro-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.gastro-collage {
  position: relative;
  min-height: clamp(520px, 44vw, 650px);
  isolation: isolate;
}

.gastro-photo,
.gastro-mini-row button {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  font: inherit;
}

.gastro-photo {
  position: absolute;
  overflow: hidden;
  display: block;
  box-shadow: 0 34px 90px rgba(21, 31, 53, .17);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gastro-photo img,
.gastro-mini-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

.gastro-photo:hover,
.gastro-mini-row button:hover {
  transform: translateY(-4px);
}

.gastro-photo:hover img,
.gastro-mini-row button:hover img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.03);
}

.gastro-photo-main {
  inset: 0 auto auto 0;
  width: 82%;
  height: 74%;
  border-radius: 42px;
}

.gastro-photo-float {
  right: 0;
  bottom: 78px;
  z-index: 2;
  width: 55%;
  height: 35%;
  border: 14px solid #fff;
  border-radius: 34px;
}

.gastro-badge {
  position: absolute;
  z-index: 3;
  right: 9%;
  top: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
  min-height: 0;
  padding: 14px 12px;
  border: 1px solid rgba(247, 146, 30, .34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 146, 30, .13), transparent 54%),
    rgba(255, 255, 255, .94);
  box-shadow:
    0 28px 58px rgba(21, 31, 53, .18),
    0 0 0 10px rgba(255, 255, 255, .62);
  text-align: center;
  transform: rotate(-5deg);
  backdrop-filter: blur(14px);
}

.gastro-badge::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(75, 46, 131, .24);
  border-radius: inherit;
  pointer-events: none;
}

.gastro-badge i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  border-radius: 50%;
  color: #4b2e83;
  background: rgba(247, 146, 30, .12);
  font-size: 17px;
}

.gastro-badge strong {
  display: block;
  position: relative;
  z-index: 1;
  color: #f7921e;
  font-size: 46px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.02em;
  text-shadow: 0 8px 18px rgba(247, 146, 30, .18);
}

.gastro-badge span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: #4b2e83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.gastro-badge small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 94px;
  margin-top: 5px;
  color: #6b5b86;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.gastro-mini-row {
  position: absolute;
  left: 4%;
  right: 6%;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gastro-mini-row button {
  overflow: hidden;
  aspect-ratio: 1 / .82;
  border: 6px solid #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(21, 31, 53, .16);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gastro-copy {
  position: relative;
}

.gastro-copy .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  background: rgba(75, 46, 131, .07);
}

.gastro-copy .section-tag i {
  color: #f7921e;
}

.gastro-copy .section-title {
  max-width: 760px;
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.gastro-copy > p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #5d6675;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.78;
}

.gastro-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 760px;
  margin: 34px 0 28px;
  border-top: 1px solid rgba(75, 46, 131, .14);
  border-bottom: 1px solid rgba(75, 46, 131, .14);
}

.gastro-feature-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 24px 28px 0;
}

.gastro-feature-list article + article {
  padding-left: 30px;
  border-left: 1px solid rgba(75, 46, 131, .14);
}

.gastro-feature-list span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .92);
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 58%, #ffffff 100%);
  color: #fff;
  font-size: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(75, 46, 131, .12),
    0 16px 36px rgba(247, 146, 30, .28);
}

.gastro-icon-emoji {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  filter: drop-shadow(0 2px 1px rgba(75, 46, 131, .28));
  transform: translateY(1px);
}

.gastro-feature-list h3 {
  margin: 0 0 9px;
  color: #151f35;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.025em;
}

.gastro-feature-list p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.58;
}

.gastro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#gastronomia .chip-pez {
  min-height: 40px;
  border-color: rgba(247, 146, 30, .24);
  background: rgba(247, 146, 30, .1);
  color: #4b2e83;
}

body.dark-mode #gastronomia {
  background:
    radial-gradient(circle at 86% 16%, rgba(247, 146, 30, .16), transparent 25rem),
    radial-gradient(circle at 10% 82%, rgba(75, 46, 131, .34), transparent 22rem),
    #111018;
}

body.dark-mode #gastronomia::after {
  opacity: 1;
}

body.dark-mode .gastro-doodles span {
  opacity: .22;
  filter: invert(1) grayscale(1) brightness(1.55) opacity(.72) drop-shadow(0 16px 30px rgba(247, 146, 30, .045));
  mix-blend-mode: screen;
}

body.dark-mode .gastro-copy .section-tag {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

body.dark-mode .gastro-copy > p,
body.dark-mode .gastro-feature-list p {
  color: rgba(255, 255, 255, .72);
}

body.dark-mode .gastro-feature-list {
  border-color: rgba(255, 255, 255, .13);
}

body.dark-mode .gastro-feature-list article + article {
  border-left-color: rgba(255, 255, 255, .13);
}

body.dark-mode .gastro-feature-list h3 {
  color: #fff;
}

body.dark-mode .gastro-badge {
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 146, 30, .18), transparent 55%),
    rgba(18, 16, 26, .92);
  border-color: rgba(247, 146, 30, .42);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, .38),
    0 0 0 10px rgba(255, 255, 255, .08),
    0 0 34px rgba(247, 146, 30, .16);
}

body.dark-mode .gastro-badge span,
body.dark-mode #gastronomia .chip-pez {
  color: #fff;
}

body.dark-mode .gastro-badge i {
  color: #fff;
  background: rgba(247, 146, 30, .22);
}

body.dark-mode .gastro-badge::before {
  border-color: rgba(255, 255, 255, .2);
}

body.dark-mode .gastro-badge small {
  color: rgba(255, 255, 255, .72);
}

body.dark-mode #gastronomia .chip-pez {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

@media (max-width: 1080px) {
  .gastro-showcase {
    grid-template-columns: 1fr;
  }

  .gastro-collage {
    width: min(100%, 760px);
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  #gastronomia::after {
    background: none;
  }

  .gastro-doodles span {
    width: calc(var(--s) * .72);
    opacity: .18;
  }

  body.dark-mode .gastro-doodles span {
    opacity: .2;
    filter: invert(1) grayscale(1) brightness(1.65) opacity(.68) drop-shadow(0 12px 22px rgba(247, 146, 30, .04));
  }

  .gastro-doodles span:nth-child(n+14) {
    display: none;
  }

  .gastro-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: 0;
  }

  .gastro-photo {
    position: relative;
    inset: auto;
    width: auto;
    box-shadow: 0 18px 42px rgba(21, 31, 53, .14);
  }

  .gastro-photo-main {
    grid-column: 1 / -1;
    width: 100%;
    height: 245px;
    border-radius: 30px;
  }

  .gastro-photo-float {
    grid-column: 1 / -1;
    width: 100%;
    height: 190px;
    border-width: 0;
    border-radius: 24px;
  }

  .gastro-badge {
    width: 108px;
    height: 108px;
    min-height: 0;
    right: 12px;
    top: 158px;
    padding: 13px 10px;
    box-shadow:
      0 20px 42px rgba(21, 31, 53, .18),
      0 0 0 7px rgba(255, 255, 255, .62);
  }

  .gastro-badge::before {
    inset: 7px;
  }

  .gastro-badge i {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .gastro-badge strong {
    font-size: 32px;
  }

  .gastro-badge span {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: .08em;
  }

  .gastro-badge small {
    display: none;
  }

  .gastro-mini-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gastro-mini-row button {
    border-width: 5px;
    border-radius: 18px;
  }

  .gastro-copy .section-title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .gastro-feature-list {
    grid-template-columns: 1fr;
  }

  .gastro-feature-list article,
  .gastro-feature-list article + article {
    padding: 22px 0;
    border-left: 0;
  }

  .gastro-feature-list article + article {
    border-top: 1px solid rgba(75, 46, 131, .14);
  }

  body.dark-mode .gastro-feature-list article + article {
    border-top-color: rgba(255, 255, 255, .13);
  }
}

/* Requested gastro mini row placement */
.gastro-mini-row {
  position: absolute !important;
  left: 4% !important;
  right: 6% !important;
  bottom: -27px !important;
  z-index: 4 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 3px !important;
}

@media (max-width: 720px) {
  .gastro-mini-row {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 2px !important;
  }
}

/* Gastro mini favorites row */
.gastro-mini-title {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 7px 0 5px;
  color: rgba(75, 46, 131, .72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
}

body.dark-mode .gastro-mini-title {
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 1px 12px rgba(247, 146, 30, .18);
}

@media (min-width: 721px) {
  .gastro-mini-row button {
    border-width: 5px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 720px) {
  .gastro-mini-title {
    margin: 5px 0 1px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .gastro-mini-row button {
    aspect-ratio: 1 / .68 !important;
  }
}

/* Desktop spacing for expanded gastro mini row */
@media (min-width: 721px) {
  .gastro-collage {
    margin-bottom: 150px !important;
  }

  .gastro-mini-row {
    bottom: -150px !important;
  }
}
