/* =========================================================
   FOLHA GOURMET FESTIVAL — HOME
   CSS consolidado da v1n-ajustes19
========================================================= */

/* =========================================================
   1. FONTES E VARIÁVEIS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --color-wine: #8f312f;
  --color-wine-dark: #652522;
  --color-wine-card: #832D31;
  --color-cream: #f4ead5;
  --color-cream-deep: #e9d6b6;
  --color-gold: #e9bb61;
  --color-gold-light: #f3d17e;
  --color-ink: #261b18;
  --color-white: #fffaf0;
  --color-stripe-1: #731f23;
  --color-stripe-2: #a8393f;
  --font-title: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-text: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
  --content-width: 90%;
  --content-max-width: 1440px;
  --space-xxs: 8px;
  --space-xs: 16px;
  --space-sm: 24px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 60px;
  --space-section: 100px;
  --space-section-mobile: 64px;
  --transition-fast: 180ms ease;
  --transition-base: 360ms ease;
  --transition-slow: 700ms ease;
  --z-header: 100;
}

/* =========================================================
   2. RESET / BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body, h1, h2, h3, h4, p, figure, ul { margin: 0; }
body {
  min-width: 320px;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.45;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
ul {
    padding: 0;
    list-style: disc;
}
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

h1, h2, h3,
.section-kicker,
.button,
.primary-navigation a,
.restaurant-card span,
.space-card span,
.highlight-card span,
.sponsors p {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .92;
}
h1 { font-size: 92px; }
h2 { font-size: 64px; }
h3 { font-size: 36px; }
p { max-width: 70ch; }

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.d-none{display: none;}


/* =========================================================
   3. UTILITÁRIOS
========================================================= */
.container {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.section { position: relative; padding: var(--space-section) 0; }
.section--wine { background: var(--color-wine); color: var(--color-cream); }
.section--cream { background: var(--color-cream); color: var(--color-wine); }
.section-kicker { margin-bottom: 10px; color: var(--color-gold); font-size: 20px; letter-spacing: .08em; }
.section-heading { margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p:not(.section-kicker) { margin: 16px auto 0; }
.section-heading--center .section-kicker { max-width: none; width: 100%; }
.section-action { display: flex; justify-content: center; margin-top: 42px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 25px;
  letter-spacing: .05em;
  transition:
    transform 420ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 420ms cubic-bezier(.16, 1, .3, 1),
    background 180ms ease;
}
.button:hover,
.button:focus-visible {
  transform: scale(1.025);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}
.button:active {
  transform: scale(1);
  box-shadow: 0 2px 7px rgba(0, 0, 0, .10);
}
.button--gold { background: var(--color-gold); color: var(--color-wine-dark); }
.button--gold:hover { background: var(--color-gold-light); }
.button--wine { background: var(--color-wine); color: var(--color-cream); }
.button--wine:hover { background: var(--color-wine-dark); }
.button--small {
    min-height: 46px;
    padding: 12px 24px;
    font-size: 20px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   4. HEADER
========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  width: 100%;
  padding-inline: 2.5%;
  color: var(--color-cream);
}
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 190px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.61) 0%, rgba(18, 18, 18, 0.20) 30%, rgba(18, 18, 18, 0) 100%);
}
.site-header__inner {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: none;
  min-height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand { width: 132px; flex: 0 0 132px; }
.site-brand img { width: 100%; filter: none; }
.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-right: auto;
}
.primary-navigation .nav-item { display: inline-flex; }
.primary-navigation .nav-item a {
  position: relative;
  display: inline-block;
  padding: 9px 0 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}
.primary-navigation .nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}
.primary-navigation .nav-item a:hover::after,
.primary-navigation .nav-item a:focus-visible::after { width: 100%; }
.primary-navigation .nav-separator { margin-inline: 17px; opacity: .72; }
.menu-toggle {
  display: none;
  width: 42px;
  padding: 8px 0;
  border: 0;
  background: transparent;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--color-cream); }
.header-ticket { min-width: 166px; }

/* =========================================================
   5. HERO / SLIDESHOW
========================================================= */
.hero {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  overflow: visible;
  background: var(--color-wine);
  color: var(--color-cream);
}
.hero__photo {
  position: relative;
  z-index: 1;
  height: 565px;
  overflow: hidden;
  isolation: isolate;
  background: #17222a;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  animation: heroV1nZoom 7s linear both;
}
.hero__slide.is-leaving {
  z-index: 1;
  opacity: 1;
  animation: none;
  transform: scale(1.075);
}
@keyframes heroV1nZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.075); }
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(9,12,14,.24), rgba(0,0,0,.02) 50%, rgba(0,0,0,.32));
}
.hero__controls {
  position: absolute;
  z-index: 4;
  right: 3.2%;
  bottom: 24px;
  display: none;
  gap: 10px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--color-cream);
  border-radius: 50%;
  background: transparent;
}
.hero__dot.is-active { background: var(--color-gold); border-color: var(--color-gold); }
.hero__partners {
  position: absolute;
  left: 3.2%;
  bottom: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero__partners-logo {
  width: auto;
  height: auto;
  filter: none;
  object-fit: contain;
}
.hero__partners-logo--folha { width: 180px; }
.hero__partners-offering {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  margin-top: -28px;
}
.hero__partners-offering > span {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero__partners-offering-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hero__partners-offering .hero__partners-logo--club { width: 100px; }
.hero__partners-offering .hero__partners-logo--guia { width: 125px; }

/* =========================================================
   6. HERO — PAINEL / INTRO
========================================================= */
.hero__festival-panel {
  position: relative;
  z-index: 20;
  min-height: 650px;
  overflow: visible;
  background: var(--color-wine);
  color: var(--color-cream);
}
.hero__festival-inner {
  position: relative;
  z-index: 1;
  width: min(90%, 1440px);
  min-height: 650px;
  margin-inline: auto;
  padding-top: 128px;
  overflow: visible;
  text-align: center;
}
.hero__festival-logo {
  position: absolute;
  top: -150px;
  left: 50%;
  z-index: 300;
  width: 300px;
  transform: translateX(-50%);
  filter: none;
  pointer-events: none;
}
.hero__frame {
  position: absolute;
  top: 158px;
  left: 50%;
  z-index: 1;
  display: block;
  width: min(72vw, 1030px);
  height: 452px;
  transform: translateX(-50%);
  border: 2px solid rgba(233,187,97,.9);
  border-radius: 18px;
  background: transparent;
}
.hero__frame::before,
.hero__frame::after { content: none; }
.hero__frame-line { display: none; }
.hero__copy {
  position: relative;
  z-index: 30;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
  text-align: center;
  background: transparent;
}
.hero__eyebrow {
  position: relative;
  z-index: 31;
  width: 100%;
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: clamp(44px, 4.2vw, 66px);
  letter-spacing: .015em;
  line-height: .92;
  text-align: center;
  text-transform: uppercase;
}
.hero__eyebrow span {
  display: inline-block;
  padding: 0 15px;
  background: var(--color-wine);
  box-shadow: none;
  white-space: nowrap;
}
.hero__intro {
  width: 100%;
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--color-cream);
  font-family: var(--font-text);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.18;
}
.hero__ticket {
  position: relative;
  z-index: 31;
  width: 325px;
  min-height: 184px;
  margin: 28px auto 0;
  padding: 30px 82px 24px 42px;
  display: grid;
  justify-items: center;
  align-content: center;
  color: var(--color-cream);
  border: 0;
  border-radius: 0;
  background: url('images/ticket.png') center / 100% 100% no-repeat;
  font-family: var(--font-title);
  text-transform: uppercase;
  transform: rotate(-1.6deg);
}
.hero__ticket::before,
.hero__ticket::after { content: none; }
.hero__ticket strong { font-size: 43px; line-height: .9; letter-spacing: .02em; }
.hero__ticket span { margin-top: 4px; font-size: 30px; line-height: .9; }
.hero__ticket i { width: 82%; height: 3px; margin: 16px 0 10px; background: var(--color-cream); transform: rotate(-1deg); }
.hero__ticket b { color: var(--color-gold); font-size: 29px; line-height: .9; }
.hero__button {
    position: absolute;
    top: 570px;
    left: 50%;
    z-index: 32;
    min-width: 330px;
    min-height: 75px;
    margin: 0;
    padding: 16px 34px;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-wine-dark);
    font-size: 30px;
}
.hero__button:hover,
.hero__button:focus-visible { transform: translateX(-50%) scale(1.025); }
.hero__button:active { transform: translateX(-50%) scale(1); }
.hero__intro-art {
  position: absolute;
  z-index: 55;
  display: block;
  pointer-events: none;
  object-fit: contain;
}
.hero__intro-art--left {
  left: -160px;
  top: 341px;
  width: min(42vw, 620px);
  height: auto;
  aspect-ratio: 1.55 / 1;
  object-position: left bottom;
}
.hero__intro-art--right {
  right: -90px;
  top: 100px;
  width: min(34vw, 520px);
  height: auto;
  aspect-ratio: 1.47 / 1;
  object-position: right center;
}

/* =========================================================
   7. ABOUT
========================================================= */
.about {
  padding: 40px 0 78px;
  background: var(--color-wine);
  color: var(--color-cream);
}
.about__grid {
  width: 100%;
  max-width: none;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(330px, 46%) minmax(0, 53%);
  gap: 30px;
  align-items: center;
}
.about__content {
  width: min(78%, 520px);
  margin-left: auto;
  margin-right: 34px;
  align-self: center;
}
.about__content .section-kicker { margin-bottom: 30px; font-size: 62px; }
.about__content h2 { display: none; }
.about__content > p:not(.section-kicker) {
  margin-top: 0;
  font-size: 27px;
  line-height: 1.2;
}
.about__content .button { margin-top: 28px; }
.about__media {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  overflow: visible;
  margin: 0;
}
.about__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.selo-folha-gourmet.gira {
    position: absolute;
    top: 66px;
    right: 590px;
    width: 142px;
    max-width: 220px;
}

/* Rotação global dos elementos com classe gira */
.gira {
  display: block;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  animation: seloGiraSuave 18s linear infinite !important;
  -webkit-animation: seloGiraSuave 18s linear infinite !important;
  will-change: transform;
}

@keyframes seloGiraSuave {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes seloGiraSuave {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* =========================================================
   8. DESTAQUES
========================================================= */
.highlights {
  padding: 72px 0 82px;
  background: var(--color-cream);
  color: var(--color-wine);
}
.highlights .section-heading {
  display: block;
  margin-bottom: 42px;
  text-align: center;
}
.highlights .section-heading h2 {
  color: var(--color-wine);
  font-size: clamp(48px, 4vw, 70px);
}
.highlights__track {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 28px;
}
.highlight-card {
  grid-column: span 3;
  min-width: 0;
  min-height: 205px;
  padding: 28px 28px 25px;
  border-radius: 10px;
  background: #2b1b18;
  color: var(--color-cream);
}
.highlight-card:nth-child(5) { grid-column: 2 / span 3; }
.highlight-card:nth-child(6) { grid-column: 5 / span 3; }
.highlight-card:nth-child(7) { grid-column: 8 / span 3; }
.highlight-card > img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}
.highlight-card h3 {
  margin: 0;
  color: var(--color-cream);
  font-size: clamp(25px, 1.7vw, 35px);
}
.highlight-card p {
  margin-top: 13px;
  color: var(--color-cream);
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.18;
}
.highlights__mobile-nav { display: none; }

/* =========================================================
   9. RESTAURANTES
========================================================= */
.restaurants {
  position: relative;
  z-index: 1;
  padding: 96px 0 76px;
  background: var(--color-wine);
  color: var(--color-cream);
}
.restaurants .section-heading { margin-bottom: 48px; }
.restaurants .section-heading h2 {
  color: var(--color-gold);
  font-size: clamp(48px, 4vw, 70px);
}
.restaurants .section-heading p {
  max-width: 850px;
  margin-inline: auto;
  color: var(--color-cream);
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.22;
}
.restaurants__grid {
  max-width: 1220px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}
.restaurant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  background: transparent;
  color: var(--color-cream);
}
.restaurant-card > img:first-child {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 320ms ease;
}
.restaurant-card:hover > img:first-child,
.restaurant-card:focus-visible > img:first-child {
  transform: scale(1.05);
  filter: none;
}
.restaurant-card > span:not(.restaurant-card__badges) { display: none; }
.restaurant-card__logo {
  display: block;
  width: min(88%, 210px);
  max-height: 68px;
  height: auto;
  margin: 14px auto 0;
  object-fit: contain;
}
.restaurant-card .restaurant-card__logo,
.restaurant-card:hover .restaurant-card__logo,
.restaurant-card:focus-visible .restaurant-card__logo {
  transform: none;
  filter: none;
}
.restaurant-card__badges {
  position: absolute;
  top: -17px;
  left: -17px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 58px;
  pointer-events: none;
}
.restaurant-card__badges img {
  display: block;
  width: 70px;
  height: 71px;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.restaurants .section-action { margin-top: 48px; }
.restaurants .section-action .button { background: var(--color-gold); color: var(--color-wine-dark); }

/* =========================================================
   10. ESPAÇOS / EXPERIÊNCIAS
========================================================= */
.spaces {
  padding: 78px 0 105px;
  background: var(--color-wine);
  color: var(--color-cream);
}
.spaces .section-heading { margin-bottom: 42px; }
.spaces .section-heading h2 {
  color: var(--color-cream);
  font-size: clamp(48px, 4vw, 70px);
}
.spaces .section-heading p { color: var(--color-cream); font-size: 25px; }
.spaces__grid {
  max-width: 1220px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}
.space-card {
  position: relative;
  min-height: 0;
  overflow: visible;
  background: transparent;
  color: var(--color-cream);
}
.space-card::after { display: none; }
.space-card img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.space-card:hover img { transform: scale(1.04); }
.space-card span {
  position: static;
  display: block;
  padding-top: 16px;
  text-align: center;
  color: var(--color-cream);
  font-size: 26px;
  line-height: 1;
}
.spaces .section-action .button { background: var(--color-gold); color: var(--color-wine-dark); }
.spaces .section-action .button:hover { background: var(--color-gold-light); }

/* =========================================================
   11. NEWSLETTER
========================================================= */
.newsletter {
  padding: 92px 0 100px;
  background: var(--color-cream);
  color: var(--color-wine);
  text-align: center;
}
.newsletter .section-kicker { display: none; }
.newsletter__inner { max-width: 800px; }
.newsletter h2 {
  max-width: 700px;
  margin-inline: auto;
  color: var(--color-wine);
  font-size: clamp(48px, 4.2vw, 72px);
  text-align: center;
}
.newsletter__inner > p:not(.section-kicker) {
  margin: 18px auto 30px;
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.25;
}
.newsletter-form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(143,49,47,.45);
  background: transparent;
  color: var(--color-ink);
}
.newsletter-form input::placeholder { color: rgba(38,27,24,.72); }
.newsletter-form .button { justify-self: center; margin-top: 6px; }

/* =========================================================
   12. PATROCÍNIOS
========================================================= */
.sponsors {
    position: relative;
    min-height: 720px;
    padding: 0px 0 132px;
    overflow: hidden;
    background: var(--color-cream);
    color: var(--color-ink);
}
.sponsors__container {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0;
}
.sponsors__group {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: end;
  text-align: center;
}
.sponsors__group > p {
  width: 100%;
  margin: 30px auto 28px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-ink);
}
.sponsors__logos {
  min-height: 0;
  align-self: end;
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  margin-inline: auto;
}
.sponsors__logos--offering,
.sponsors__logos--master {
  grid-template-columns: repeat(3, 150px);
  justify-content: center;
  gap: 56px;
  width: min(100%, 562px);
}
.sponsors__logos--support {
  grid-template-columns: repeat(5, 120px);
  justify-content: center;
  gap: 34px;
  width: min(100%, 736px);
}
.sponsor-placeholder {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(233,214,182,.36);
  color: transparent;
}
.sponsor-placeholder { justify-self: center; }

/* =========================================================
   13. FOOTER
========================================================= */
.site-footer {
    position: relative;
    padding: 44px 0 40px;
    background: var(--color-wine);
    color: var(--color-cream);
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}
.site-footer__logo { width: 220px; height: auto; filter: none; }
.site-footer__offering {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 28px;
  width: 100%;
}
.site-footer__offering > span {
    width: auto;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffff;
}
.site-footer__offering img { height: auto; object-fit: contain; }
.site-footer__offering .site-footer__folha { width: 170px; }
.site-footer__offering .site-footer__club {
  width: 92px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}
.site-footer__offering .site-footer__guia { width: 112px; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 18px;
}
.site-footer p { font-size: 14px; opacity: .75; }

/* =========================================================
   14. DIVISORES COLOR STRIPE
========================================================= */
.color-stripe {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  width: 100%;
  height: 10px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.color-stripe i {
  display: block;
  flex: 1 1 25%;
  height: 10px;
  margin: 0;
  padding: 0;
}
.color-stripe i:nth-child(odd),
.color-stripe--hero i:nth-child(odd) { background: var(--color-stripe-1); }
.color-stripe i:nth-child(even),
.color-stripe--hero i:nth-child(even) { background: var(--color-stripe-2); }
.color-stripe--hero {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  height: 10px;
}
.color-stripe--hero i { flex: 1 1 25%; height: 10px; }
.hero__transition-line { display: none; }

/* =========================================================
   15. LEGADO REMOVIDO / COMPATIBILIDADE
========================================================= */
.page-home main > .section--wine::before,
.page-home main > .section--cream::before,
.highlights::after,
.restaurants::before,
.restaurants::after,
.spaces::before,
.spaces::after,
.newsletter::before,
.newsletter::after,
.sponsors::before,
.sponsors::after,
.site-footer::before,
.site-footer__wave {
  content: none;
  display: none;
}
.wave-divider {
  width: 100%;
  height: 10px;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.wave-divider svg { display: block; width: 100%; height: 10px; }
.wave-divider--wine-to-cream { background: var(--color-cream); }
.wave-divider--cream-to-wine { background: var(--color-wine); }

/* =========================================================
   16. MEDIA QUERIES — TABLET / MOBILE / DESKTOP
========================================================= */

/* =========================================================
   O FESTIVAL — página interna
   Reaproveita as variáveis, botões e divisores da Home.
========================================================= */

.page-festival .site-header { color: var(--color-cream); }

.festival-hero {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 680px;
  background: var(--color-wine);
  color: var(--color-cream);
}
.festival-hero__media { min-height: 680px; overflow: hidden; }
.festival-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.festival-hero__content { display: flex; align-items: center; justify-content: center; padding: 120px 8%; text-align: center; }
.festival-hero__inner { max-width: 620px; }
.festival-hero__seal {
    position: absolute;
    top: 68%;
    left: 46%;
    z-index: 6;
    width: 132px;
    max-width: none;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.festival-hero__stripe {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 5;
}
.festival-hero h1 {
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: clamp(58px, 5vw, 86px);
    margin-top: 24px;
}
.festival-hero .section-kicker { display: none; }
.festival-hero__inner > p:not(.section-kicker) { margin: 0 auto 24px; font-size: 26px; }
.festival-hero__inner strong { display: block; margin-bottom: 32px; color: var(--color-cream); font-family: var(--font-text); font-size: 30px; line-height: 1.15; }

.festival-story { padding-bottom: 110px; }
.festival-story__inner { max-width: 1050px; }
.festival-story .section-heading { max-width: 1000px; margin-inline: auto; }
.festival-story h2 { color: var(--color-wine); font-size: clamp(42px, 4vw, 64px); }
.festival-story .section-heading > p { max-width: 1000px; margin: 18px auto 0; font-size: 21px; line-height: 1.3; }
.festival-video { margin-top: 42px; background: var(--color-ink); }
.festival-video video { display: block; width: 100%; max-height: 580px; aspect-ratio: 16 / 9; object-fit: cover; }

.festival-editorial {
    padding: 90px 0 0px;
}
.festival-editorial__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; max-width: 760px; margin-inline: auto; }
.festival-ticket-card { position: relative; aspect-ratio: 459 / 753; padding: 110px 40px 60px; display: flex; align-items: center; justify-content: center; overflow: visible; background: url("images/ticket-sobre.png") center / 100% 100% no-repeat; color: var(--color-cream); }
.festival-ticket-card__seal { position: absolute; top: -28px; z-index: 2; width: 125px; max-width: none; pointer-events: none; }
.festival-ticket-card:first-child .festival-ticket-card__seal { left: -14%; }
.festival-ticket-card:last-child .festival-ticket-card__seal { right: -14%; }
.festival-ticket-card__content { position: relative; z-index: 1; width: 100%; max-width: 300px; text-align: center; }
.festival-ticket-card__content .section-kicker { margin-bottom: 22px; font-size: 38px; line-height: .98; }
.festival-ticket-card__content > p:last-child { font-size: 18px; line-height: 1.22; }

.festival-spaces { padding: 85px 0 105px; }
.festival-spaces .section-kicker { color: var(--color-wine-dark); }
.festival-spaces__carousel { width: 100%; max-width: none; padding: 0; }
.festival-space-card {
  height: 680px;
  display: grid;
  grid-template-columns: 57% 43%;
  grid-template-areas: "content image";
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-gold);
  color: var(--color-wine-dark);
  padding: 36px;
}
.festival-space-card__content {
  grid-area: content;
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 20px 28px;
  justify-self: center;
  align-self: center;
}
.festival-space-card__media {
  grid-area: image;
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.festival-space-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
.festival-space-card__seal {
  position: absolute;
  top: 18px;
  left: -12%;
  z-index: 3;
  width: 155px;
  max-width: none;
  pointer-events: none;
}
.festival-space-card__content .section-kicker { color: var(--color-wine-dark); font-size: 18px; }
.festival-space-card h3 {
  max-width: 470px;
  margin: 0 0 22px;
  font-size: 48px;
  line-height: .95;
}
.festival-space-card__content > p:not(.section-kicker) { margin-bottom: 18px; font-size: 19px; line-height: 1.2; }
.festival-space-card ul { margin: 0; padding-left: 20px; }
.festival-space-card li { margin: 7px 0; color: var(--color-cream); font-size: 17px; line-height: 1.2; }
.festival-space-card li::marker { color: var(--color-cream); }

/* Variações de cor dos cards do carrossel */
.festival-space-card--gold {
  background: var(--color-gold);
  color: var(--color-wine-dark);
}

.festival-space-card--gold .section-kicker,
.festival-space-card--gold h3,
.festival-space-card--gold .festival-space-card__content > p:not(.section-kicker) {
  color: var(--color-wine-dark);
}

.festival-space-card--gold .festival-space-card__content > p:not(.section-kicker) {
  color: var(--color-wine-card);
}
.festival-space-card--gold .festival-space-card__content li,
.festival-space-card--gold .festival-space-card__content li::marker {
  color: var(--color-wine-card);
}

.festival-space-card--wine {
  background: #731F23;
  color: var(--color-cream);
}

.festival-space-card--wine .section-kicker {
  color: var(--color-cream);
}

.festival-space-card--wine h3,
.festival-space-card--wine .festival-space-card__content > p:not(.section-kicker) {
  color: var(--color-gold);
}

.festival-spaces .container { position: relative; }
.festival-spaces__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-wine-dark);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-wine-dark);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}
.festival-spaces__nav--prev { left: -56px; }
.festival-spaces__nav--next { right: -56px; }
.festival-spaces__nav--prev svg { transform: rotate(180deg); }
.festival-spaces__nav:disabled { opacity: .35; cursor: default; }

.festival-location { padding: 90px 0 72px; }
.festival-location__grid { display: grid; grid-template-columns: 45% 55%; align-items: center; gap: 20px; }
.festival-location__content { padding-right: 30px; }
.festival-location .section-kicker { font-size: 20px; }
.festival-location h2 { margin-bottom: 22px; color: var(--color-wine); font-size: clamp(48px, 4vw, 66px); }
.festival-location__content > p { margin-top: 18px; font-size: 19px; line-height: 1.25; }
.festival-location__map img { width: 100%; border-radius: 8px; }

.festival-arrival { padding: 35px 0 100px; }
.festival-arrival .section-heading { margin-bottom: 40px; }
.festival-arrival h2 { color: var(--color-wine); }
.festival-arrival__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 50px; max-width: 1100px; margin-inline: auto; text-align: center; }
.festival-arrival__grid article { display: flex; flex-direction: column; align-items: center; }
.festival-arrival__grid img {
    width: 85px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 18px;
}
.festival-arrival__grid h3 { color: var(--color-wine); font-size: 30px; }
.festival-arrival__grid p { margin-top: 12px; font-size: 17px; line-height: 1.25; }

@media (min-width: 1025px) {
  .about__media img {
    width: calc(100% + 30px);
    margin-right: -30px;
  }
}

@media (min-width: 1920px) {
  :root { --content-max-width: 1728px; }
    
    
.container.festival-location__grid {
    width: 75%;
}    
    
.about__media img {
    width: 800px;
    margin-right: 0px;
}
    
    
.about__content {
    width: min(80%, 600px);
    margin-right: 34px;
}    

  .site-header { padding-inline: 2%; }
  .site-header__inner { width: 96%; }

  .hero__photo { height: 660px; }
  .hero__festival-panel,
  .hero__festival-inner { min-height: 690px; }
  .hero__festival-inner { padding-top: 126px; }
  .hero__festival-logo { width: 300px; }
  .hero__frame { width: min(76vw, 1320px); height: 485px; }
  .hero__eyebrow { font-size: clamp(58px, 3.4vw, 68px); }
  .hero__intro { font-size: 31px; }
  .hero__ticket { width: 350px; min-height: 205px; }
.hero__button {
    top: 604px;
    min-width: 350px;
 }
  .hero__intro-art--left { left: -290px; top: 310px; width: 640px; }
  .hero__intro-art--right { right: -240px; top: 90px; width: 510px; }
.selo-folha-gourmet.gira {
    top: 86px;
    right: 840px;
}

  .highlights__track { max-width: 1680px; gap: 26px 30px; }
  .highlight-card { min-height: 250px; padding: 34px 32px; }
  .highlight-card > img { width: 56px; height: 56px; }

  .restaurants__grid,
  .spaces__grid { max-width: 1380px; gap: 54px 58px; }
  .site-footer__logo { width: 220px; }

.festival-hero__inner { max-width: 740px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .container { width: min(90%, 1440px); }
  .faq-page .container { width: min(90%, 1200px); }
  .hero__photo { height: 590px; }
  .hero__festival-panel,
  .hero__festival-inner { min-height: 650px; }
  .hero__festival-inner { padding-top: 123px; }
  .hero__frame { top: 145px; width: min(78vw, 1180px); height: 465px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .faq-page .container { width: min(90%, 1150px); }
  .site-header { padding-inline: 2.5%; }
  .site-header__inner { width: 95%; }
  .primary-navigation { gap: 0; }
  .about__grid { gap: 0; }
  .highlights__track { max-width: 1500px; }
}

@media (max-width: 1199px) {
  .site-header { padding-inline: 24px; }
  .site-header__inner { min-height: 82px; width: 100%; }
  .site-brand { width: 105px; flex-basis: 105px; }
  .menu-toggle { display: block; order: 3; }
  .header-ticket { order: 2; margin-left: auto; }
  .primary-navigation {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 24px;
    background: var(--color-wine-dark);
    flex-direction: column;
    align-items: flex-start;
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation .nav-separator { display: none; }

  .hero__photo { height: 510px; }
  .hero__partners > .hero__partners-logo--folha { width: 145px; }
  .hero__festival-panel,
  .hero__festival-inner { min-height: 620px; }
  .hero__intro-art--left { left: -180px; width: 500px; }
  .hero__intro-art--right { right: -140px; width: 390px; }

  .about__grid { grid-template-columns: 1fr; min-height: auto; }
  .about__content {
    width: var(--content-width);
    margin: 0 auto;
    padding: 80px 0 30px;
  }
  .about__media { width: 100%; }

  .highlights__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .highlight-card { grid-column: auto; }
  .highlight-card:nth-child(5),
  .highlight-card:nth-child(6),
  .highlight-card:nth-child(7) { grid-column: auto; }
  .highlight-card:nth-child(7) { grid-column: 1 / -1; width: 50%; justify-self: center; }

  .restaurants__grid,
  .spaces__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }

  .sponsors { min-height: 0; }
  .sponsors__container { min-height: 0; gap: 54px; }
  .sponsors__logos--support { grid-template-columns: repeat(3, 112px); }

.festival-hero { min-height: 600px; }
  .festival-hero__media { min-height: 600px; }
  .festival-hero__content { padding: 100px 6%; }
}

@media (max-width: 767px) {
    
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }    
    
  :root { --content-width: calc(100% - 32px); }
  body { font-size: 17px; }
  h1 { font-size: 62px; }
  h2 { font-size: 48px; }
  h3 { font-size: 30px; }
  .section { padding: var(--space-section-mobile) 0; }

  /* Header mobile: menu à esquerda e CTA à direita. */
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 16px;
    background: var(--color-wine);
  }
  .site-header__inner {
    width: 100%;
    min-height: 70px;
    gap: 12px;
  }
  .site-brand { display: none; }
.menu-toggle {
    display: block;
    order: 1;
    width: 32px;
    height: 42px;
    padding: 8px 0;
    flex: 0 0 32px;
}
  .primary-navigation {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 22px;
    background: var(--color-wine-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation .nav-item { width: 100%; }
  .primary-navigation .nav-item a { display: block; padding: 11px 0; }
  .primary-navigation .nav-separator { display: none; }
.header-ticket {
    order: 2;
    min-width: 0;
    min-height: 42px;
    margin-left: auto;
    padding: 11px 18px;
    font-size: 18px;
    white-space: nowrap;
}

  .hero { padding-top: 70px; }
  .hero__photo { height: 450px; }
  .hero__photo-overlay {
    background: linear-gradient(180deg,rgba(18, 18, 18, 0.61) 0%, rgba(255, 255, 255, 0) 73%);
  }
    
    
  
    
  .hero__partners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    min-height: 64px;
    height: 64px;
    margin-top: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    z-index: 10;
  }
  .hero__partners > .hero__partners-logo--folha { width: 106px; flex: 0 0 auto; }
  .hero__partners-offering {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 0;
  }
  .hero__partners-offering > span { font-size: 9px; }
  .hero__partners-offering-logos { gap: 10px; }
  .hero__partners-offering .hero__partners-logo--club { width: 62px; }
  .hero__partners-offering .hero__partners-logo--guia { width: 76px; }

  .hero__festival-inner { width: 100%; padding: 94px 16px 0px; min-height: unset;}
    
.hero__festival-panel, .hero__festival-inner {min-height: unset;}    
    
  .hero__festival-logo { top: -86px; width: 190px; }
  .hero__frame { display: none; top: 126px; width: calc(100% - 32px); height: 420px; }
  .hero__copy { max-width: 100%; padding: 0 8px; }
  .hero__eyebrow { font-size: 39px; }
  .hero__eyebrow span { white-space: normal; }
  .hero__intro { font-size: 20px; }
  .hero__intro br { display: none; }
  .hero__ticket {
    width: 270px;
    min-height: 158px;
    margin-top: 7px;
    padding: 20px 55px 20px 28px;
  }
  .hero__ticket strong { font-size: 36px; }
  .hero__ticket span { font-size: 26px; }
  .hero__ticket b { font-size: 24px; }
.hero__button {
    top: 460px;
    min-width: 245px;
    min-height: 58px;
    padding: 16px 30px;
    font-size: 23px;
}
.hero__intro-art--left {
    left: -87px;
    top: 320px;
    width: 229px;
}
.hero__intro-art--right {
    right: -4px;
    top: 267px;
    width: 150px;
}

  .about { padding-bottom: 64px; }
    
.about__content {
    padding: 80px 20px 30px;
}    
    
  .about__content .section-kicker { font-size: 48px; }
  .about__content > p:not(.section-kicker) { font-size: 20px; }
  .about__media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
  }
  .about__media img {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
  }

  .highlights { padding: 58px 0 58px; }
  .highlights .section-heading { margin-bottom: 30px; }
  .highlights .section-heading h2 { font-size: 46px; }
  .highlights__track {
    width: 100%;
    max-width: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 12px;
    margin: 0;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    cursor: grab;
  }
  .highlights__track::-webkit-scrollbar { display: none; }
  .highlights__track .highlight-card {
    width: auto;
    max-width: none;
    min-height: 205px;
    margin: 0;
    grid-column: auto;
    scroll-snap-align: start;
  }
  .highlight-card {
    min-height: 205px;
    padding: 20px 17px;
  }
  .highlight-card:nth-child(5),
  .highlight-card:nth-child(6),
  .highlight-card:nth-child(7) { grid-column: auto; }
  .highlight-card:nth-child(7) { max-width: none; width: auto; justify-self: auto; }
  .highlight-card > img { width: 42px; height: 42px; margin-bottom: 15px; }
  .highlight-card h3 { font-size: 25px; }
  .highlight-card p { font-size: 16px; }
  .highlights__mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .highlights__mobile-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(143,49,47,.28);
    transition: transform 280ms cubic-bezier(.16, 1, .3, 1), background 280ms ease;
  }
  .highlights__mobile-dot.is-active {
    background: var(--color-wine);
    transform: scale(1.35);
  }

  .restaurants { padding: 72px 0 62px; }
  .restaurants .section-heading { margin-bottom: 34px; }
  .restaurants .section-heading h2 { font-size: 43px; }
  .restaurants .section-heading p { font-size: 18px; }
  .restaurants__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .restaurants__grid .restaurant-card:nth-child(n + 5) { display: none; }
  .restaurant-card { overflow: visible; }
  .restaurant-card > img:first-child { width: 100%; aspect-ratio: 1 / 1; }
  .restaurant-card__logo { width: 88%; margin-top: 13px; }
  .restaurant-card__badges {
    top: 0;
    left: -10px;
    width: 42px;
    min-height: 0;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
  }
  .restaurant-card__badges img {
    width: 42px;
    height: 42px;
    min-height: 0;
    max-width: 42px;
    margin: 0;
    padding: 0;
    object-fit: contain;
  }

  .spaces { padding: 58px 0 72px; }
  .spaces .section-heading h2 { font-size: 43px; }
  .spaces .section-heading p { font-size: 18px; }
  .space-card span { font-size: 20px; }

  .newsletter { padding: 68px 0 76px; }
  .newsletter h2 { font-size: 44px; }
  .newsletter__inner > p:not(.section-kicker) { font-size: 18px; }

  .sponsors { padding: 58px 0 78px; }
  .sponsors__container { width: min(100% - 32px, 520px); gap: 42px; }
  .sponsors__group > p { margin: 20px auto 24px; font-size: 16px; line-height: 1.15; }
  .sponsors__logos--offering,
  .sponsors__logos--master,
  .sponsors__logos--support {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 760px;
  }
  .sponsor-placeholder,
  .sponsors__logos--support .sponsor-placeholder {
    width: min(22vw, 86px);
    height: min(22vw, 86px);
  }

  .site-footer__offering {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "folha folha"
      "offer offer"
      "club guia";
    justify-content: center;
    align-items: center;
    column-gap: 22px;
    row-gap: 12px;
    margin-top: 12px;
  }
  .site-footer__offering .site-footer__folha {
    grid-area: folha;
    width: 120px;
    justify-self: center;
  }
  .site-footer__offering > span {
    grid-area: offer;
    justify-self: center;
    font-size: 10px;
  }
  .site-footer__offering .site-footer__club {
    grid-area: club;
    width: 66px;
    justify-self: end;
  }
  .site-footer__offering .site-footer__guia {
    grid-area: guia;
    width: 82px;
    justify-self: start;
  }

.festival-hero { display: flex; flex-direction: column; min-height: 0; padding-top: 70px; }
  .festival-hero__media { min-height: 350px; height: 350px; }
  .festival-hero__content { min-height: 470px; padding: 60px 20px 70px; }
.festival-hero__seal {
    top: 410px;
    width: 119px;
    left: 358px;
}
  .festival-hero h1 { font-size: 48px; }
  .festival-hero__inner > p:not(.section-kicker) { font-size: 19px; }
  .festival-hero__inner strong { font-size: 23px; }

  .festival-story { padding-top: 60px; padding-bottom: 70px; }
  .festival-story h2 { font-size: 40px; }
  .festival-story .section-heading > p { font-size: 17px; }
  .festival-video { margin-top: 28px; }

  .festival-editorial { padding: 70px 0 0px; }
  .festival-editorial__grid { grid-template-columns: 1fr; gap: 34px; max-width: 390px; }
  .festival-ticket-card { aspect-ratio: 459 / 753; padding: 92px 34px 55px; }
  .festival-ticket-card__seal { width: 105px; top: -18px; }
.festival-ticket-card:first-child .festival-ticket-card__seal {
    left: 8%;
}
.festival-ticket-card:last-child .festival-ticket-card__seal {
    right: 7%;
}
  .festival-ticket-card__content { max-width: 285px; }
  .festival-ticket-card__content .section-kicker { font-size: 32px; }
  .festival-ticket-card__content > p:last-child { font-size: 16px; }

  .festival-spaces { padding: 60px 0 72px; }
  .festival-spaces__carousel { padding: 0 0 62px; overflow: visible; }
  .festival-space-card.swiper-slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
    height: auto;
    min-height: 0;
    padding: 0;
  }
  .festival-space-card__media { height: 220px; }
  .festival-space-card__content { padding: 30px 24px; }
  .festival-space-card h3 { font-size: 34px; }
  .festival-space-card__content > p:not(.section-kicker),
  .festival-space-card li { font-size: 16px; }
  .festival-space-card__image {
    grid-area: image;
    width: 100%;
    min-height: 220px;
    height: 220px;
  }
  .festival-spaces__nav { top: auto; bottom: 0; transform: none; width: 44px; height: 44px; font-size: 34px; }
  .festival-spaces__nav--prev { left: calc(50% - 54px); }
  .festival-spaces__nav--next { right: calc(50% - 54px); }

.festival-location {
    padding: 60px 18px 45px;
}
  .festival-location__grid { grid-template-columns: 1fr; }
  .festival-location__content { padding-right: 0; }
  .festival-location h2 { font-size: 45px; }
  .festival-location__content > p { font-size: 17px; }
  .festival-location__map { margin-top: 25px; }

  .festival-arrival { padding: 25px 0 70px; }
  .festival-arrival__grid { grid-template-columns: 1fr; gap: 35px; }
  .festival-arrival__grid h3 { font-size: 27px; }
}


/* =========================================================
   18. PÁGINA — RESTAURANTES
========================================================= */
.restaurants-hero {
    --restaurants-hero-gold: #f0c35e;
    position: relative;
    z-index: 1;
    min-height: 700px;
    overflow: hidden;
    background: var(--restaurants-hero-gold);
    color: var(--color-wine-dark);
    padding-top: 48px;
}
.restaurants-hero__inner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 90px;
  overflow: visible;
}
.restaurants-hero__copy {
  position: relative;
  z-index: 20;
  width: min(620px, 48%);
  text-align: center;
}
.restaurants-hero__frame {
    position: absolute;
    z-index: 5;
    top: 185px;
    left: 50%;
    width: min(820px, 70%);
    height: 300px;
    border: 2px solid var(--color-wine-dark);
    transform: translateX(-50%);
    pointer-events: none;
    border-radius: 10px;
}
.restaurants-hero__copy .section-kicker {
  color: var(--color-wine-dark);
  margin-bottom: 12px;
}
.restaurants-hero__copy h1 {
    color: var(--color-wine-dark);
    font-size: clamp(54px, 4.8vw, 78px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: -88px;
    background: #f0c35e;
}
.restaurants-hero__copy > p:not(.section-kicker) {
    max-width: 400px;
    margin: 24px auto 28px;
    font-size: clamp(26px, 1.5vw, 31px);
    line-height: 1.2;
}
.restaurants-hero__art {
  position: absolute;
  z-index: 10;
  max-width: none;
  pointer-events: none;
}
.restaurants-hero__art--left {
    left: -175px;
    bottom: -43px;
    width: 520px;
}
.restaurants-hero__art--right {
    right: -140px;
    bottom: -40px;
    width: 520px;
}
.restaurants-hero__selo {
  position: absolute;
  z-index: 30;
  top: 190px;
  right: 17%;
  width: 150px;
  max-width: none;
  pointer-events: none;
}
.restaurants-hero .wave-divider--restaurants-hero {
    --divider-notch-size: 12px;
    --divider-notch-step: 45px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background: var(--color-wine);
    -webkit-mask-image: radial-gradient(
    circle var(--divider-notch-size) at calc(var(--divider-notch-step) / 2) 0,
    transparent 0 97%,
    #000 100%
  );
    -webkit-mask-size: var(--divider-notch-step) 100%;
    -webkit-mask-position: 0 0;
    -webkit-mask-repeat: repeat-x;
    mask-image: radial-gradient(
    circle var(--divider-notch-size) at calc(var(--divider-notch-step) / 2) 0,
    transparent 0 97%,
    #000 100%
  );
    mask-size: var(--divider-notch-step) 100%;
    mask-position: 0 0;
    mask-repeat: repeat-x;
    z-index: 30;
}
.restaurants-hero .wave-divider--restaurants-hero svg {
  display: none;
}
.restaurants-page {
  background: var(--color-wine);
  color: var(--color-cream);
  padding: 82px 0 96px;
}
.restaurants-page .section-heading {
  margin-bottom: 50px;
}
.restaurants-page .section-heading h2 {
  color: var(--color-gold);
  font-size: clamp(48px, 4vw, 70px);
}
.restaurants-page .section-heading p {
  max-width: 850px;
  margin: 16px auto 0;
  color: var(--color-cream);
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.2;
}
.restaurants-page__grid {
  max-width: 1220px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 62px 42px;
}
.restaurants-page .restaurant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  color: var(--color-cream);
  text-align: center;
}
.restaurants-page .restaurant-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}
.restaurants-page .restaurant-card__logo {
  width: min(88%, 210px);
  max-height: 68px;
  margin: 14px auto 0;
  object-fit: contain;
}
.restaurants-page .restaurant-card h3 {
  margin-top: 14px;
  color: var(--color-cream);
  font-family: var(--font-text);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.restaurants-page .restaurant-card p {
    display: none;
    max-width: 290px;
    margin-top: 12px;
    color: var(--color-cream);
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
}
.restaurants-page .restaurant-card__badges {
  position: absolute;
  top: -28px;
  left: -22px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 68px;
  pointer-events: none;
}
.restaurants-page .restaurant-card__badges img {
  width: 68px;
  height: 68px;
  max-width: none;
  object-fit: contain;
}
.restaurants-page .restaurant-card__badges--one img { width: 68px; height: 68px; }
.restaurants-page .restaurant-card__badges--two img { width: 68px; height: 68px; }


.selo-folha-restaurantes {
    position: absolute;
    top: 69px;
    right: 139px;
    width: 151px;
    z-index: 10;
}   

@media (min-width: 1920px) {
  .restaurants-hero__copy { width: 700px; }
.restaurants-hero__frame {
    width: 1100px;
    height: 340px;    
}
    
    
    
.selo-folha-restaurantes {
    top: 69px;
    right: 229px;
}    
  .restaurants-hero__art--left { left: -150px; width: 620px; }
  .restaurants-hero__art--right { right: -150px; width: 620px; }
  .restaurants-hero__selo { right: 19%; width: 175px; }
  .restaurants-page__grid { max-width: 1380px; gap: 58px 58px; }
}

@media (max-width: 1199px) {
  .restaurants-hero { min-height: 620px; }
  .restaurants-hero__inner { min-height: 580px; }
  .restaurants-hero__copy { width: 58%; }
  .restaurants-hero__art--left { left: -150px; width: 430px; }
  .restaurants-hero__art--right { right: -150px; width: 430px; }
  .restaurants-hero__selo { right: 13%; width: 125px; }
  .restaurants-hero__frame { width: 62%; height: 270px; top: 180px; }
}

@media (max-width: 767px) {
  .restaurants-hero { min-height: 620px; }
  .restaurants-hero__inner {
    min-height: 590px;
    width: 100%;
    padding: 118px 16px 150px;
  }
  .restaurants-hero__copy { width: 100%; max-width: 520px; }
  .restaurants-hero__copy .section-kicker { font-size: 17px; }
  .restaurants-hero__copy h1 { font-size: 45px; }
  .restaurants-hero__copy > p:not(.section-kicker) { font-size: 19px; }
.restaurants-hero__art--left {
    left: -110px;
    bottom: 5px;
    width: 270px;
}
.restaurants-hero__art--right {
    right: -75px;
    bottom: -15px;
    width: 280px;
}
  .restaurants-hero__selo { top: auto; right: 50%; bottom: 150px; width: 92px; transform: translateX(50%); }
    
.restaurants-hero__frame {
    width: 85%;
    height: 291px;
    top: 180px;
}

  .restaurants-page { padding: 60px 0 72px; }
  .restaurants-page .section-heading { margin-bottom: 42px; }
  .restaurants-page .section-heading h2 { font-size: 43px; }
  .restaurants-page .section-heading p { font-size: 17px; }
  .restaurants-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 16px;
  }
  .restaurants-page .restaurant-card__logo {
    width: 88%;
    max-height: 58px;
    margin-top: 11px;
  }
  .restaurants-page .restaurant-card h3 { font-size: 19px; margin-top: 10px; }
  .restaurants-page .restaurant-card p { display: none; max-width: 100%; margin-top: 8px; font-size: 11px; line-height: 1.28; }
  .restaurants-page .restaurant-card__badges {
    top: -12px;
    left: -10px;
    width: 44px;
    gap: 1px;
  }
  .restaurants-page .restaurant-card__badges img,
  .restaurants-page .restaurant-card__badges--one img,
  .restaurants-page .restaurant-card__badges--two img {
    width: 44px;
    height: 44px;
  }
    
    

}


/* =========================================================
   EXPERIÊNCIAS — página e componentes específicos
========================================================= */

.experiencias-page {
  background: var(--color-cream);
}

.experiencias-hero {
  position: relative;
  min-height: 526px;
  overflow: hidden;
  background: var(--color-wine);
}
.experiencias-hero__media,
.experiencias-hero__media img {
  width: 100%;
  height: 100%;
}
.experiencias-hero__media img {
  min-height: 526px;
  object-fit: cover;
}

.experiencias-page .experiencias-intro,
.experiencias-page .experiencias-list {
  display: none;
}

.experiencias-page .experiencias-hero__stripe {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 10px;
  margin: 0;
}

.experiencias-intro {
    padding: 58px 0 0px;
    text-align: center;
}
.experiencias-intro__text {
    max-width: 930px;
    margin-inline: auto;
    font-size: 25px;
    line-height: 1.15;
    color: var(--color-wine-dark);
}

.experiencias-list {
  padding: 34px 0 100px;
}
.experiencias-list__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 74px 54px;
  max-width: 1350px;
  margin-inline: auto;
}

/*
   Cards em formato de envelope:
   a imagem ocupa a parte superior e o conteúdo entra por baixo
   através do mesmo padrão ondulado usado nos wave-dividers do site.
*/
.experiencia-card {
  position: relative;
  min-width: 0;
}
.experiencia-card:nth-child(even) {
  transform: rotate(1.6deg);
}
.experiencia-card:nth-child(odd) {
  transform: rotate(-1.1deg);
}

.experiencia-card__photo {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: var(--color-wine);
}
.experiencia-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experiencia-card__info {
  position: relative;
  min-height: 370px;
  margin-top: 0;
  padding: 48px 30px 42px;
  background: var(--color-wine);
  color: var(--color-cream);
  text-align: center;
  overflow: visible;
}

/* Ordem visual dos cards: vinho, amarelo, escuro, vinho. */
.experiencia-card:nth-child(4n + 1) .experiencia-card__info {
  background: var(--color-wine);
  color: var(--color-cream);
  border-bottom: 1px var(--color-cream) solid;    
}
.experiencia-card:nth-child(4n + 2) .experiencia-card__info {
  background: var(--color-gold);
  color: var(--color-wine-dark);
  border-bottom: 1px var(--color-cream) solid;    
}
.experiencia-card:nth-child(4n + 3) .experiencia-card__info {
    background: var(--color-ink);
    color: var(--color-cream);
    border-bottom: 1px var(--color-cream) solid;
}
.experiencia-card:nth-child(4n + 4) .experiencia-card__info {
    background: var(--color-wine);
    color: var(--color-cream);
    border-bottom: 1px var(--color-cream) solid;
}

/*
   Perfuração real de ingresso: o mask remove os pixels do bloco vinho,
   permitindo que o elemento que está atrás apareça nos recortes.
   Assim o efeito funciona tanto sobre a foto quanto sobre o fundo da página.
*/
.experiencia-card__info {
    --ticket-notch-size: 18px;
    --ticket-notch-step: 53px;
    -webkit-mask-image: radial-gradient(circle var(--ticket-notch-size) at calc(var(--ticket-notch-step) / 2) 0, transparent 0 97%, #000 100%),
    radial-gradient(circle var(--ticket-notch-size) at calc(var(--ticket-notch-step) / 2) 100%, transparent 0 97%, #000 100%);
    -webkit-mask-size: var(--ticket-notch-step) 100%, var(--ticket-notch-step) 100%;
    -webkit-mask-position: 0 0, 0 0;
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-composite: source-in;
    mask-image: radial-gradient(circle var(--ticket-notch-size) at calc(var(--ticket-notch-step) / 2) 0, transparent 0 97%, #000 100%),
    radial-gradient(circle var(--ticket-notch-size) at calc(var(--ticket-notch-step) / 2) 100%, transparent 0 97%, #000 100%);
    mask-size: var(--ticket-notch-step) 100%, var(--ticket-notch-step) 100%;
    mask-position: 0 0, 0 0;
    mask-repeat: repeat-x;
    mask-composite: intersect;
    margin-top: -21px;
}

.experiencia-card__info h3 {
  max-width: 240px;
  margin: 0 auto 24px;
  color: var(--color-gold);
  font-size: 34px;
  line-height: .95;
}
.experiencia-card:nth-child(4n + 1) .experiencia-card__info h3,
.experiencia-card:nth-child(4n + 3) .experiencia-card__info h3,
.experiencia-card:nth-child(4n + 4) .experiencia-card__info h3 {
  color: var(--color-gold);
}
.experiencia-card:nth-child(4n + 2) .experiencia-card__info h3 {
  color: var(--color-wine-dark);
}
.experiencia-card__info p {
  max-width: 230px;
  margin-inline: auto;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.experiencias-mosaic__stripe {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  width: 100%;
  height: 10px;
}
 .experiencias-mosaic {
  padding: 0 0 90px;
  background: var(--color-cream);
}
.experiencias-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.experiencias-mosaic__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.experiencias-mosaic__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1920px) {
  .experiencias-hero,
  .experiencias-hero__media img { min-height: 620px; }
  .experiencias-intro__text { font-size: 30px; }
  .experiencias-list__grid { max-width: 1450px; gap: 84px 60px; }
  .experiencia-card__photo { height: 300px; }
  .experiencia-card__info { min-height: 390px; }
}

@media (max-width: 1199px) {
  .experiencias-list__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px 28px; }
  .experiencia-card__photo { height: 290px; }
}

@media (max-width: 767px) {
.experiencias-hero, .experiencias-hero__media img {
    min-height: 340px;
    height: 390px;
    margin-top: 30px;
} 
    
  .experiencias-intro { padding: 46px 0 0px; }
  .experiencias-intro__text { font-size: 19px; }
  .experiencias-list { padding: 20px 0 70px; }
  .experiencias-list__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 14px; }
  .experiencia-card:nth-child(even) { transform: rotate(1.2deg); }
  .experiencia-card:nth-child(odd) { transform: rotate(-0.8deg); }
  .experiencia-card__photo { height: 180px; }
  .experiencia-card__info { min-height: 270px; padding: 40px 16px 28px; }
  .experiencia-card__info h3 { font-size: 25px; margin-bottom: 16px; }
  .experiencia-card__info p { font-size: 12px; line-height: 1.4; }
  .experiencia-card__info {
    --ticket-notch-size: 15px;
    --ticket-notch-step: 50px;
  }
  .experiencias-mosaic { padding-bottom: 60px; }
  .experiencias-mosaic__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
}

/* =========================================================
   PROGRAMAÇÃO / LINE UP
========================================================= */
.programacao-page {
  background: var(--color-cream);
}

.programacao-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: url("images/festival-sun.jpg") center 48% / cover no-repeat;
}
.programacao-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.61) 0%, rgba(18, 18, 18, 0.12) 30%, rgba(255, 255, 255, 0) 45%);
}
.programacao-hero__media {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 4% 28px;
}
.programacao-hero__frame {
  width: min(94%, 1460px);
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-wine);
  background: rgba(244, 234, 213, .96);
  box-shadow: 0 0 0 10px rgba(244, 234, 213, .88);
}
.programacao-hero__seal {
  position: absolute;
  top: -78px;
  width: 120px;
  height: auto;
  z-index: 3;
}
.programacao-hero__frame h1 {
  color: var(--color-ink);
  font-size: clamp(34px, 4vw, 58px);
  text-align: center;
}

.programacao-newsletter {
  padding: 58px 0 64px;
  text-align: center;
}
.programacao-newsletter .section-heading {
  margin-bottom: 28px;
}
.programacao-newsletter .section-kicker {
  color: var(--color-wine);
  margin-bottom: 8px;
  font-size: 30px;
}
.programacao-newsletter h2 {
  max-width: 800px;
  margin-inline: auto;
  color: var(--color-wine);
  font-size: clamp(38px, 4.4vw, 60px);
}
.programacao-newsletter .section-heading > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 18px;
}
.programacao-tally {
  width: min(100%, 560px);
  margin-inline: auto;
  overflow: hidden;
}
.programacao-tally iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
  background: transparent;
}

.programacao-schedule {
  background: var(--color-cream);
  padding: 18px 0 96px;
}
.programacao-week {
  position: relative;
  padding: 46px 0 62px;
  border-top: 1px solid rgba(143, 49, 47, .42);
}
.programacao-week:first-child {
  border-top: 0;
}
.programacao-week--second {
  padding-top: 58px;
}
.programacao-week__heading {
  text-align: center;
  margin-bottom: 38px;
}
.programacao-week__heading h2 {
  display: inline-block;
  color: var(--color-gold);
  font-size: clamp(42px, 4.5vw, 64px);
  padding-bottom: 14px;
  border-bottom: 3px solid currentColor;
}
.programacao-week--second .programacao-week__heading h2 {
  color: var(--color-wine);
}

.programacao-day {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 48px;
  padding-top: 28px;
}
.programacao-day:last-child {
  margin-bottom: 0;
}
.programacao-day__date {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 12px 25px 13px;
  background: var(--color-gold);
  color: var(--color-wine-dark);
  box-shadow: 5px 5px 0 var(--color-wine);
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 30px);
  line-height: .9;
  text-transform: uppercase;
  transform: rotate(-.4deg);
}
.programacao-day__date span {
  margin-inline: 8px;
}
.programacao-day__stamp {
  position: absolute;
  top: -4px;
  right: 12px;
  z-index: 4;
  width: 120px;
  height: 120px;
}
.programacao-day__stamp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.programacao-day__box {
  position: relative;
  margin-left: 42px;
  padding: 72px 115px 48px 175px;
  border: 1px solid var(--color-wine);
  border-radius: 0 22px 22px 22px;
}
.programacao-event {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 92px;
}
.programacao-event + .programacao-event {
  margin-top: 24px;
}
.programacao-event__time {
  padding-right: 22px;
  border-right: 2px solid var(--color-wine);
  color: var(--color-wine);
  font-family: var(--font-title);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: .85;
  text-align: right;
}
.programacao-event__content h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: clamp(25px, 2.4vw, 40px);
  line-height: .9;
}
.programacao-event__content p {
  color: var(--color-wine);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  text-transform: uppercase;
}
.programacao-event__content p strong {
  font-weight: 700;
}

@media (max-width: 1199px) {
  .programacao-day__box {
    padding-left: 130px;
    padding-right: 95px;
  }
}

@media (max-width: 767px) {
  .programacao-hero,
  .programacao-hero__media {
    min-height: 180px;
  }
.programacao-hero__media {
    padding: 120px 28px 60px;
}
  .programacao-hero__frame {
    min-height: 112px;
    box-shadow: 0 0 0 7px rgba(244, 234, 213, .88);
  }
  .programacao-hero__seal {
    top: -52px;
    width: 82px;
  }
  .programacao-hero__frame h1 {
    font-size: 31px;
  }
  .programacao-newsletter {
    padding: 46px 0 38px;
  }
  .programacao-newsletter .section-kicker {
    font-size: 25px;
  }
  .programacao-newsletter h2 {
    font-size: 42px;
  }
  .programacao-newsletter .section-heading > p:last-child {
    font-size: 16px;
    padding-inline: 12px;
  }
  .programacao-tally iframe {
    height: 220px;
  }
  .programacao-schedule {
    padding-bottom: 58px;
  }
  .programacao-week,
  .programacao-week--second {
    padding: 42px 0 46px;
  }
  .programacao-week__heading {
    margin-bottom: 42px;
  }
  .programacao-week__heading h2 {
    font-size: 40px;
    padding-bottom: 9px;
  }
  .programacao-day {
    padding-top: 24px;
    margin-bottom: 42px;
  }
  .programacao-day__date {
    padding: 10px 16px 11px;
    font-size: 20px;
    box-shadow: 4px 4px 0 var(--color-wine);
  }
  .programacao-day__stamp {
    top: -8px;
    right: 2px;
    width: 86px;
    height: 86px;
  }
  .programacao-day__box {
    margin-left: 12px;
    padding: 62px 18px 28px 18px;
    border-radius: 0 14px 14px 14px;
  }
  .programacao-event {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 70px;
  }
  .programacao-event + .programacao-event {
    margin-top: 18px;
  }
  .programacao-event__time {
    padding-right: 11px;
    font-size: 31px;
  }
  .programacao-event__content h3 {
    margin-bottom: 6px;
    font-size: 23px;
  }
  .programacao-event__content p {
    font-size: 10px;
  }
}

/* =========================================================
   FAQ
========================================================= */
.faq-page {
  background: var(--color-cream);
}
.faq-intro {
    padding: 176px 0 28px;
    text-align: center;
}
.faq-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-intro .section-kicker {
  margin-bottom: 8px;
  color: var(--color-wine);
  font-size: clamp(42px, 4vw, 58px);
}
.faq-intro h1 {
  color: var(--color-ink);
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}
.faq-section {
  padding: 12px 0 88px;
}
.faq-category {
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  column-gap: 54px;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(143, 49, 47, .35);
}
.faq-category:last-child {
  border-bottom: 1px solid rgba(143, 49, 47, .35);
}
.faq-category h2 {
  align-self: start;
  color: var(--color-wine);
  font-size: clamp(32px, 3vw, 48px);
  line-height: .9;
}
.faq-category--gold h2 {
  color: var(--color-gold);
}
.faq-list {
  min-width: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(143, 49, 47, .16);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: left;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  transition: color var(--transition-fast);
}
.faq-question i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--color-wine);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-base), color var(--transition-fast);
}
.faq-question:hover,
.faq-question:focus-visible {
  color: var(--color-wine);
}
.faq-question:hover i,
.faq-question:focus-visible i {
  color: var(--color-gold);
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
  color: var(--color-wine);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 360ms ease, opacity 220ms ease;
}
.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}
.faq-answer p {
  max-width: 70ch;
  padding: 0 28px 4px 0;
  color: rgba(38, 27, 24, .78);
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.4;
}
.faq-answer p:last-child {
  padding-bottom: 13px;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

@media (max-width: 767px) {
  .faq-intro {
    padding: 104px 0 24px;
  }
  .faq-intro .section-kicker {
    font-size: 40px;
  }
  .faq-intro h1 {
    font-size: 18px;
  }
  .faq-section {
    padding: 8px 15px 58px;
  }
  .faq-category {
    display: block;
    padding: 25px 0 28px;
  }
  .faq-category h2 {
    margin-bottom: 20px;
    font-size: 35px;
  }
  .faq-question {
    grid-template-columns: minmax(0, 1fr) 22px;
    min-height: 44px;
    padding: 8px 0;
    font-size: 15px;
  }
.faq-question i {
    font-size: 20px;
    font-weight: 600;
}
  .faq-answer p {
    padding-right: 18px;
    font-size: 14px;
  }
}

.faq-page .site-header {
  background: var(--color-wine);
}


/* Redes sociais flutuantes */
.social-float {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: #E3B667;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(18px);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 0s linear 320ms;
}

.social-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 0s linear 0s;
}

.social-float__link {
  display: block;
  line-height: 0;
}

.social-float__link img {
  display: block;
  width: 35px;
  height: 35px;
  object-fit: contain;
  max-width: none;
}

@media (max-width: 767px) {
  .social-float__link img {
    width: 35px;
    height: 35px;
  }

  .social-float {
    border-radius: 14px 0 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-float {
    transition: none;
  }
}

/* CORREÇÃO FINAL — EXPERIÊNCIAS / REDES SOCIAIS */

/* Stripe imediatamente depois do hero de Experiências */
.experiencias-page .experiencias-hero__stripe {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: flex !important;
  width: 100% !important;
  height: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2 !important;
}

/* Redes sociais: sempre flutuantes, nunca no fluxo da página */
.social-float {
  position: fixed !important;
  top: 50% !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  width: 35px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 1000 !important;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: #E3B667;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(18px);
  transition: opacity 320ms ease, transform 320ms ease, visibility 0s linear 320ms;
}

.social-float.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(-50%) translateX(0) !important;
}

.social-float__link {
  display: block !important;
  flex: 0 0 35px !important;
  width: 35px !important;
  height: 35px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.social-float__link img {
  display: block !important;
  width: 35px !important;
  height: 35px !important;
  min-width: 35px !important;
  min-height: 35px !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}

@media (max-width: 767px) {
  .social-float {
    border-radius: 14px 0 0 14px;
  }
}
