    /* ============== Reset & Base ============== */
    *,
    *::before,
    *::after { box-sizing: border-box; }
    * { margin: 0; padding: 0; }

    :root {
      --green: #5C7A4E;
      --green-dark: #4c6640;
      --cream: #f5f1ea;
      --beige: #F2EFEA;
      --rule: #D1CDC2;
      --ink: #1f1d1a;
      --ink-soft: #4a463f;
      --ink-muted: #6b6557;
      --white: #ffffff;
      --overlay: rgba(31, 29, 26, 0.55);
      --card-overlay: rgba(31, 29, 26, 0.45);
      --card-overlay-hover: rgba(31, 29, 26, 0.25);
      --max-w: 1280px;
      --gutter: clamp(1.25rem, 4vw, 3rem);
      --radius: 6px;
    }

    html { scroll-behavior: smooth; overflow-x: clip; }

    body {
      font-family: 'Lora', Georgia, 'Times New Roman', serif;
      font-weight: 400;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* ============== Sistema de animações de entrada ============== */
    /* Elementos com .reveal começam invisíveis e sobem ao entrar no viewport */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Variante: zoom-in sutil (pra imagens) */
    .reveal--zoom {
      transform: scale(0.96);
    }
    .reveal--zoom.is-visible {
      transform: scale(1);
    }

    /* Variante: deslizar da esquerda/direita (pra layouts 2-col) */
    .reveal--left  { transform: translateX(-32px); }
    .reveal--right { transform: translateX(32px); }
    .reveal--left.is-visible,
    .reveal--right.is-visible { transform: translateX(0); }

    /* Stagger: filhos com .reveal-stagger entram com delay incremental */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .reveal-stagger.is-visible > *           { opacity: 1; transform: translateY(0); }
    .reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.00s; }
    .reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.08s; }
    .reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.16s; }
    .reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.24s; }
    .reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.32s; }
    .reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.40s; }
    .reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.48s; }
    .reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 0.56s; }
    .reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 0.64s; }
    .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.72s; }
    .reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 0.80s; }
    .reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 0.88s; }
    .reveal-stagger.is-visible > *:nth-child(13) { transition-delay: 0.96s; }
    .reveal-stagger.is-visible > *:nth-child(14) { transition-delay: 1.04s; }

    /* Respeita preferência de reduzir movimento */
    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal--zoom,
      .reveal--left,
      .reveal--right,
      .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
    }

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

    button {
      font: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    /* ============== Header ============== */
    .header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      padding: 1.75rem var(--gutter);
    }

    .header__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    /* Empurra nav + bandeiras para a direita, mantendo logo à esquerda */
    .header__nav { margin-left: auto; }

    .header__logo {
      display: inline-flex;
      align-items: center;
      height: 36px;
      flex-shrink: 0;
    }

    .header__logo img {
      height: 100%;
      width: auto;
      filter: brightness(0) invert(1);
    }

    /* Nav */
    .header__nav {
      display: flex;
      align-items: center;
      gap: clamp(1.25rem, 2.2vw, 2.25rem);
    }

    .header__nav a {
      color: #fff;
      font-family: 'Lora', Georgia, serif;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.01em;
      transition: opacity 0.2s ease;
      position: relative;
      padding: 4px 0;
      white-space: nowrap;
    }

    .header__nav a:hover,
    .header__nav a:focus-visible {
      opacity: 0.78;
      outline: none;
    }

    .header__nav a.is-current {
      font-weight: 600;
    }
    .header__nav a.is-current::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 2px;
      background: #fff;
      border-radius: 1px;
    }

    .header__nav a:focus-visible::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: #fff;
      border-radius: 1px;
    }

    /* Language switcher */
    .header__lang {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .lang-btn {
      width: 28px;
      height: 28px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0.65;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .lang-btn img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .lang-btn:hover {
      opacity: 1;
      transform: scale(1.08);
    }

    .lang-btn.is-active {
      opacity: 1;
    }

    .lang-btn:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.75);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* Mobile toggle (hambúrguer) — escondido no desktop */
    .header__toggle {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }

    .header__toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      position: relative;
      transition: background 0.2s ease;
    }

    .header__toggle span::before,
    .header__toggle span::after {
      content: '';
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: transform 0.25s ease, top 0.25s ease;
    }

    .header__toggle span::before { top: -7px; }
    .header__toggle span::after  { top: 7px; }

    .header__toggle[aria-expanded="true"] span { background: transparent; }
    .header__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .header__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

    /* Faixa intermediária: nav horizontal mas apertado (tablet landscape) */
    @media (min-width: 901px) and (max-width: 1100px) {
      .header__nav a { font-size: 17px; }
      .header__nav { gap: 1rem; }
    }

    @media (max-width: 900px) {
      .header__toggle { display: inline-flex; }
      .header__inner { gap: 0.75rem; }
      .header__logo { height: 28px; }

      /* Agrupa hambúrguer + bandeiras à direita */
      .header__toggle { margin-left: auto; order: 2; }
      .header__lang   { order: 3; }
      .header__nav    { order: 4; }

      .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(31, 29, 26, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 1rem var(--gutter) 1.5rem;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
      }

      .header__nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .header__nav a {
        padding: 0.75rem 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .header__nav a:last-child { border-bottom: none; }
    }

    @media (max-width: 420px) {
      .header { padding: 1rem var(--gutter); }
      .header__logo { height: 24px; max-width: 150px; }
      .header__logo img { max-width: 100%; height: auto; }
      .header__lang { gap: 6px; }
      .lang-btn { width: 24px; height: 24px; }
      .header__toggle { width: 36px; height: 36px; }
    }

    /* ============== Hero ============== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      isolation: isolate;
    }

    .hero__slides {
      position: absolute;
      inset: 0;
    }

    .hero__slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
      transform: scale(1.02);
    }

    /* Backgrounds por breakpoint — desktop (default, >=1025px) */
    .hero__slide[data-slide="1"] { background-image: url('assets/background-1.webp'); }
    .hero__slide[data-slide="2"] { background-image: url('assets/background-2.webp'); }
    .hero__slide[data-slide="3"] { background-image: url('assets/background-3.webp'); }

    /* Tablet: 768–1024 */
    @media (min-width: 768px) and (max-width: 1024px) {
      .hero__slide[data-slide="1"] { background-image: url('assets/hero-tablet-1.webp'); }
      .hero__slide[data-slide="2"] { background-image: url('assets/hero-tablet-2.webp'); }
      .hero__slide[data-slide="3"] { background-image: url('assets/hero-tablet-3.webp'); }
    }

    /* Mobile: ≤767 */
    @media (max-width: 767px) {
      .hero__slide[data-slide="1"] { background-image: url('assets/hero-mobile-1.webp'); }
      .hero__slide[data-slide="2"] { background-image: url('assets/hero-mobile-2.webp'); }
      .hero__slide[data-slide="3"] { background-image: url('assets/hero-mobile-3.webp'); }
    }

    .hero__slide.is-active {
      opacity: 1;
      animation: kenburns 12s ease-out forwards;
    }

    @keyframes kenburns {
      from { transform: scale(1.02); }
      to { transform: scale(1.08); }
    }

    .hero__slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(31, 29, 26, 0.55) 0%,
        rgba(31, 29, 26, 0.35) 50%,
        rgba(31, 29, 26, 0.65) 100%
      );
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--gutter);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
    }

    .hero__text {
      max-width: 640px;
    }

    .hero__headline {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-size: clamp(2rem, 5vw, 56px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.01em;
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
      text-wrap: balance;
    }

    .hero__sub {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.05rem, 1.8vw, 22px);
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 2.25rem;
      opacity: 0.95;
      text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
      max-width: 56ch;
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }

    .hero__actions {
      display: flex;
      gap: 0.9rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* fade-in for hero content per slide */
    .hero__text > * {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .hero.is-loaded .hero__text > * {
      opacity: 1;
      transform: translateY(0);
    }
    .hero.is-loaded .hero__headline { transition-delay: 0.1s; }
    .hero.is-loaded .hero__sub { transition-delay: 0.25s; }
    .hero.is-loaded .hero__actions { transition-delay: 0.4s; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 2rem;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      border-radius: var(--radius);
      transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      min-width: 160px;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px); }
    .btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

    .btn--solid {
      background: rgba(31, 29, 26, 0.55);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .btn--solid:hover {
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 8px 24px -8px rgba(93, 122, 78, 0.6);
    }

    .btn--outline {
      background: var(--white);
      color: var(--ink);
      border: 1px solid var(--white);
    }
    .btn--outline:hover {
      background: transparent;
      color: var(--white);
    }

    /* Carousel dots */
    .hero__dots {
      position: absolute;
      bottom: 2.25rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 0.6rem;
    }
    .hero__dot {
      width: 32px;
      height: 3px;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.35);
      transition: background 0.3s ease, width 0.3s ease;
      cursor: pointer;
      padding: 0;
    }
    .hero__dot.is-active {
      background: var(--white);
      width: 48px;
    }
    .hero__dot:focus-visible {
      outline: 2px solid var(--white);
      outline-offset: 4px;
    }

    /* ============== Experiences ============== */
    .experiences {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--white);
    }

    .experiences__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .experiences__head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.5rem, 4vw, 4rem);
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
      align-items: start;
    }

    .experiences__title {
      font-size: clamp(1.85rem, 3.5vw, 2.75rem);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .experiences__title strong {
      display: block;
      font-weight: 700;
    }

    .experiences__lede {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.6vw, 22px);
      font-weight: 400;
      line-height: 1.55;
      color: #626262;
      max-width: 480px;
      padding-top: 0.5rem;
    }

    /* Desktop: cola o lede à direita do grid, mantendo texto alinhado à esquerda */
    @media (min-width: 901px) {
      .experiences__lede { margin-left: auto; }
    }

    /* Grid: rhythmic 3-2-3-2 layout */
    .grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(6, 1fr);
    }

    .grid__item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center;
      isolation: isolate;
      transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
    }
    .grid__item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(31, 29, 26, 0.25) 0%,
        rgba(31, 29, 26, 0.6) 100%
      );
      transition: background 0.4s ease;
      z-index: 1;
    }
    .grid__item:hover { transform: translateY(-4px); }
    .grid__item:hover::before {
      background: linear-gradient(
        180deg,
        rgba(31, 29, 26, 0.1) 0%,
        rgba(31, 29, 26, 0.45) 100%
      );
    }

    .grid__item-inner {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.5rem;
      color: var(--white);
    }

    .grid__item-title {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.35rem, 2.2vw, 30px);
      font-weight: 600;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 0.9rem;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    }

    .grid__item-desc {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.6vw, 22px);
      font-weight: 400;
      line-height: 1.45;
      color: #fff;
      max-width: 32ch;
      opacity: 0.95;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
      text-wrap: balance;
    }

    /* Row 1: 3 columns (each spans 2 of 6) */
    .grid__item--r1 { grid-column: span 2; }
    /* Row 2: 2 columns (each spans 3 of 6) */
    .grid__item--r2 { grid-column: span 3; aspect-ratio: 16 / 9; }
    /* Row 3: 3 columns */
    .grid__item--r3 { grid-column: span 2; }
    /* Row 4: 2 columns */
    .grid__item--r4 { grid-column: span 3; aspect-ratio: 16 / 9; }

    /* Tablet: collapse to 2 columns */
    @media (max-width: 900px) {
      .experiences__head {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .grid { grid-template-columns: repeat(2, 1fr); }
      .grid__item--r1,
      .grid__item--r2,
      .grid__item--r3,
      .grid__item--r4 {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
      }
    }

    /* Mobile: single column */
    @media (max-width: 560px) {
      .hero { min-height: 560px; }
      .hero__actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
      .btn { width: 100%; }
      .grid { grid-template-columns: 1fr; }
      .grid__item--r1,
      .grid__item--r2,
      .grid__item--r3,
      .grid__item--r4 {
        grid-column: span 1;
        aspect-ratio: 16 / 10;
      }
      .header { padding: 1.25rem var(--gutter); }
      .header__logo { height: 28px; }
    }

    /* ============== Tickets ============== */
    .tickets {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--beige);
    }

    .tickets__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .tickets__head {
      text-align: center;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .tickets__title {
      font-size: clamp(1.85rem, 3.5vw, 2.75rem);
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.005em;
      color: var(--ink);
      margin-bottom: 0.85rem;
    }

    .tickets__sub {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.6vw, 22px);
      font-weight: 400;
      color: #626262;
      line-height: 1.5;
      text-wrap: balance;
    }

    .tickets__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
      align-items: stretch;
    }

    /* Ticket Card */
    .ticket {
      background: var(--white);
      border-radius: 8px;
      padding: clamp(1.75rem, 2.5vw, 2.25rem);
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 2px rgba(31, 29, 26, 0.04), 0 8px 24px -16px rgba(31, 29, 26, 0.08);
      transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
    }

    .ticket:hover {
      transform: translateY(-4px);
      box-shadow: 0 1px 2px rgba(31, 29, 26, 0.05), 0 16px 32px -16px rgba(31, 29, 26, 0.15);
    }

    .ticket__head {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 1rem;
      padding-bottom: 0;
      border-bottom: 1px solid var(--rule);
      margin-bottom: 1.25rem;
    }

    .ticket__name {
      font-size: 30px;
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      flex: 1;
      min-width: 0;
      align-self: center;
      padding-bottom: 1.25rem;
    }

    .ticket__illo {
      flex-shrink: 0;
      height: clamp(70px, 9vw, 95px);
      width: auto;
      align-self: flex-end;
      display: block;
      margin-bottom: -1px;
    }

    .ticket__illo img {
      height: 100%;
      width: auto;
      display: block;
    }

    .ticket__desc {
      font-size: 0.95rem;
      color: var(--ink-muted);
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .ticket__price {
      font-size: clamp(3rem, 5.5vw, 4.25rem);
      font-weight: 400;
      line-height: 1;
      color: var(--ink);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .ticket__list {
      list-style: none;
      margin: 0 0 1.75rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      flex: 1;
    }

    .ticket__list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.4;
    }

    .ticket__check {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      color: var(--green);
    }

    .ticket__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0.95rem 1.5rem;
      background: var(--green);
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: var(--radius);
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
      margin-top: auto;
    }

    .ticket__cta:hover {
      background: var(--green-dark);
      box-shadow: 0 8px 18px -8px rgba(92, 122, 78, 0.5);
    }

    .ticket__cta:active { transform: translateY(1px); }
    .ticket__cta:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

    /* Tablet: 1 column wide cards */
    @media (max-width: 900px) {
      .tickets__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }
    }

    /* ============== About (Sobre Nós) ============== */
    .about {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(3rem, 5vw, 4.5rem);
      background: var(--white);
    }

    .about__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
    }

    .about__content {
      max-width: 520px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.9rem 0.4rem 0.7rem;
      background: var(--beige);
      border-radius: 999px;
      font-size: 18px;
      font-weight: 400;
      color: #636363;
      margin-bottom: 1.5rem;
    }

    .pill--white {
      background: var(--white);
    }

    .pill img {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .about__title {
      font-size: 45px;
      font-weight: 400;
      line-height: 1.15;
      color: #212121;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }

    .about__text {
      font-size: 22px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--ink-soft);
    }

    .about__text p + p {
      margin-top: 1.25rem;
    }

    /* Botão "Ver mais →" — link discreto sublinhado */
    .about__more {
      display: inline-flex;
      align-items: center;
      margin-top: 1.5rem;
      padding: 0;
      background: transparent;
      border: 0;
      color: var(--green);
      font-family: inherit;
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 0.01em;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
      cursor: pointer;
      transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
    }

    .about__more:hover {
      color: var(--green-dark);
      text-decoration-thickness: 2px;
    }

    .about__more:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 4px;
      border-radius: 2px;
    }

    /* ============== About Modal ============== */
    .about-modal {
      position: fixed;
      inset: 0;
      background: rgba(15, 14, 12, 0.72);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: clamp(1rem, 4vw, 2rem);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .about-modal[hidden] {
      display: none !important;
    }

    .about-modal.is-open {
      display: flex;
      opacity: 1;
    }

    .about-modal__dialog {
      position: relative;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 24px 60px -12px rgba(15, 14, 12, 0.35);
      max-width: 720px;
      width: 100%;
      max-height: calc(100vh - 4rem);
      overflow-y: auto;
      padding: clamp(1.75rem, 4vw, 3rem);
      transform: translateY(12px);
      transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .about-modal.is-open .about-modal__dialog {
      transform: translateY(0);
    }

    .about-modal__close {
      position: absolute;
      top: clamp(0.75rem, 2vw, 1.25rem);
      right: clamp(0.75rem, 2vw, 1.25rem);
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: 0;
      border-radius: 50%;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .about-modal__close:hover {
      background: var(--beige, #F2EFEA);
      color: var(--green-dark);
    }

    .about-modal__close:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 2px;
    }

    .about-modal__title {
      font-family: 'Lora', Georgia, serif;
      font-weight: 600;
      font-size: clamp(1.5rem, 3.5vw, 2rem);
      line-height: 1.2;
      color: var(--ink);
      margin: 0 2.5rem 1.25rem 0;
      text-wrap: balance;
    }

    .about-modal__body {
      font-family: 'Lora', Georgia, serif;
      font-size: 1.0625rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    .about-modal__body p + p {
      margin-top: 1rem;
    }

    .about-modal__body strong {
      color: var(--ink);
      font-weight: 600;
    }

    /* Trava o scroll do body quando o modal está aberto */
    body.about-modal-open {
      overflow: hidden;
    }

    /* Respeita preferência de movimento reduzido */
    @media (prefers-reduced-motion: reduce) {
      .about-modal,
      .about-modal__dialog {
        transition: none !important;
        transform: none !important;
      }
    }

    /* Image with torn paper label */
    .about__media {
      position: relative;
      width: 666px;
      max-width: 100%;
    }

    .about__photo {
      display: block;
      width: 100%;
      height: auto;
    }

    .about__tag {
      position: absolute;
      top: clamp(1rem, 2.5vw, 2rem);
      left: clamp(-0.5rem, -1vw, -1rem);
      z-index: 2;
      width: 343.56px;
      height: 98.6px;
      filter: drop-shadow(0 6px 14px rgba(31, 29, 26, 0.18))
              drop-shadow(0 2px 4px rgba(31, 29, 26, 0.08));
    }

    /* ============== Pillars (Missão / Visão / Valores) ============== */
    .pillars {
      padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
      background: var(--white);
    }

    .pillars__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .pillar {
      position: relative;
      background: var(--white);
      border: 1px solid var(--beige);
      border-radius: 6px;
      padding: clamp(1.75rem, 2.8vw, 2.25rem);
      padding-top: clamp(2.5rem, 3.5vw, 3rem);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    }

    /* Inner top tab — like a drawer pull, aligned to content start */
    .pillar::before {
      content: '';
      position: absolute;
      top: 0;
      left: clamp(1.75rem, 2.8vw, 2.25rem);
      width: 180px;
      height: 12px;
      background: #DED6C9;
      border-radius: 0 0 6px 6px;
    }

    /* Center card highlighted */
    .pillar--featured {
      background: var(--beige);
      border-color: var(--beige);
    }

    .pillar:hover {
      transform: scale(1.03);
      box-shadow: 0 18px 36px -20px rgba(31, 29, 26, 0.22);
    }

    .pillar__icon {
      width: 70px;
      height: 70px;
      margin-bottom: 1.5rem;
    }

    .pillar__icon img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .pillar__title {
      font-size: 25px;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .pillar__desc {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--ink-soft);
    }

    /* Responsive: about */
    @media (max-width: 1100px) {
      .about__media {
        width: 100%;
        max-width: 520px;
      }
    }

    @media (max-width: 900px) {
      .about__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
      }
      .about__content {
        max-width: 100%;
      }
      .pillars__inner {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 560px) {
      .about__title { font-size: clamp(2rem, 8vw, 2.5rem); }
      .about__text { font-size: 1.05rem; }
      .pill { font-size: 0.95rem; }
      .about__tag {
        width: 240px;
        height: 68.9px;
        left: -0.5rem;
      }
    }

    /* ============== Testimonials ============== */
    .testimonials {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--beige);
      overflow: hidden;
    }

    .testimonials__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .testimonials__head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.5rem;
      align-items: flex-end;
      margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

    .testimonials__title {
      font-size: 45px;
      font-weight: 400;
      line-height: 1.15;
      color: #212121;
      letter-spacing: -0.01em;
      margin-top: 1rem;
    }

    .testimonials__nav {
      display: flex;
      gap: 0.75rem;
      align-self: end;
    }

    .testimonials__btn {
      width: 60px;
      height: 50px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: opacity 0.25s ease, transform 0.2s ease;
    }
    .testimonials__btn img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .testimonials__btn:hover:not(:disabled) {
      transform: translateY(-1px);
    }
    .testimonials__btn:disabled {
      opacity: 0.35;
      cursor: default;
    }
    .testimonials__btn:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* Carousel viewport */
    .testimonials__viewport {
      overflow: hidden;
      margin: 0 calc(var(--gutter) * -0.25);
    }

    .testimonials__track {
      display: flex;
      gap: 24px;
      transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
      padding: 8px calc(var(--gutter) * 0.25) 16px;
    }

    .testimonial {
      flex: 0 0 calc((100% - 48px) / 3);
      position: relative;
      padding: clamp(1.75rem, 2.5vw, 2.25rem);
      display: flex;
      flex-direction: column;
    }

    /* Quote icon nestled into the top-right notch */
    .testimonial__quote {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 32px;
      height: 32px;
    }
    .testimonial__quote img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .testimonial__stars {
      display: flex;
      gap: 4px;
      margin-bottom: 1.25rem;
    }
    .testimonial__stars img {
      width: 16px;
      height: 16px;
      display: block;
    }
    .testimonial__stars img.is-dim {
      opacity: 0.3;
    }

    .testimonial__text {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.55;
      color: #666666;
      flex: 1;
      margin-bottom: 1.5rem;
    }

    .testimonial__author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial__avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.65rem;
      font-weight: 600;
      color: var(--white);
      font-family: 'Lora', serif;
      line-height: 1;
      letter-spacing: -0.01em;
      user-select: none;
    }

    /* Distinct background tints for the initials avatars */
    .avatar-c1 { background: #5C7A4E; }
    .avatar-c2 { background: #8B6F47; }
    .avatar-c3 { background: #A0522D; }
    .avatar-c4 { background: #6B7F5A; }
    .avatar-c5 { background: #7D5E3C; }
    .avatar-c6 { background: #4A6741; }

    .testimonial__name {
      font-size: 20px;
      font-weight: 700;
      color: #404A3D;
      line-height: 1.2;
    }

    /* Link below the carousel to view all reviews */
    .testimonials__footer {
      display: flex;
      justify-content: center;
      margin-top: clamp(2rem, 4vw, 3rem);
    }

    .testimonials__more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
      color: #404A3D;
      text-decoration: underline;
      text-underline-offset: 4px;
      transition: color 0.2s ease;
    }
    .testimonials__more:hover {
      color: var(--green);
    }

    /* Responsive: testimonials */
    @media (max-width: 900px) {
      .testimonial {
        flex: 0 0 calc((100% - 24px) / 2);
      }
      .testimonials__head {
        grid-template-columns: 1fr;
      }
      .testimonials__nav {
        justify-self: start;
      }
    }

    @media (max-width: 600px) {
      .testimonial {
        flex: 0 0 100%;
      }
      .testimonials__track {
        gap: 16px;
      }
      .testimonials__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
      }
    }

    /* ============== Testimonials (Depoimentos) ============== */
    .testimonials {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--beige);
      overflow: hidden;
    }

    .testimonials__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .testimonials__head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: end;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .testimonials__title-block {
      max-width: 720px;
    }

    .testimonials__title {
      font-size: 45px;
      font-weight: 400;
      line-height: 1.15;
      color: #212121;
      letter-spacing: -0.01em;
    }

    .testimonials__nav {
      display: flex;
      gap: 0.75rem;
      align-self: end;
      padding-bottom: 0.25rem;
    }

    .testimonials__btn {
      width: 60px;
      height: 50px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: opacity 0.25s ease, transform 0.2s ease;
    }

    .testimonials__btn img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .testimonials__btn:hover { opacity: 0.7; }
    .testimonials__btn:active { transform: translateY(1px); }
    .testimonials__btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
    .testimonials__btn:disabled { opacity: 0.35; cursor: not-allowed; }

    /* Carousel viewport */
    .testimonials__viewport {
      overflow: hidden;
    }

    .testimonials__track {
      display: flex;
      gap: clamp(1rem, 2vw, 1.5rem);
      transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
      will-change: transform;
    }

    /* Each slide takes 1/3 of viewport (minus gaps) on desktop */
    .testimonial {
      flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.5rem)) / 3);
      min-width: 0;
      position: relative;
      background: #ffffff;
      border: 1px solid #EBEBEB;
      border-radius: 10px;
      padding: clamp(1.5rem, 2.5vw, 1.875rem) clamp(1.5rem, 2.5vw, 2rem);
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 2px rgba(31, 29, 26, 0.03), 0 4px 14px -8px rgba(31, 29, 26, 0.06);
    }

    .testimonial__quote {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 32px;
      height: 32px;
      z-index: 1;
      pointer-events: none;
      opacity: 0.55;
    }

    .testimonial__quote img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .testimonial__stars {
      display: flex;
      gap: 4px;
      margin-bottom: 1.25rem;
    }

    .testimonial__stars img {
      width: 16px;
      height: 16px;
      display: block;
    }

    .testimonial__stars img.is-empty {
      opacity: 0.25;
    }

    .testimonial__text {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
      color: #666666;
      margin-bottom: auto;
      padding-bottom: 1.5rem;
    }

    .testimonial__author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-top: 0.5rem;
    }

    .testimonial__avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.65rem;
      font-weight: 600;
      color: var(--white);
      font-family: 'Lora', serif;
      letter-spacing: -0.01em;
      user-select: none;
    }

    .testimonial__name {
      font-size: 20px;
      font-weight: 700;
      color: #404A3D;
      line-height: 1.3;
    }

    /* Avatar color palette — earthy tones harmonious with the design */
    .avatar-c1 { background: #5C7A4E; }
    .avatar-c2 { background: #7A5C3E; }
    .avatar-c3 { background: #8B6B4A; }
    .avatar-c4 { background: #4E6B5C; }
    .avatar-c5 { background: #6B5A8C; }
    .avatar-c6 { background: #8C5C6B; }

    /* Responsive testimonials */
    @media (max-width: 900px) {
      .testimonials__head {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
      .testimonials__nav { justify-self: start; }
      .testimonial {
        flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2);
      }
    }

    @media (max-width: 640px) {
      .testimonial {
        flex: 0 0 100%;
      }
      .testimonials__title { font-size: clamp(2rem, 8vw, 2.5rem); }
      .testimonial__avatar { width: 64px; height: 64px; font-size: 1.4rem; }
      .testimonial__name { font-size: 18px; }
    }

    /* ============== Gallery ============== */
    .gallery {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--white);
    }

    .gallery__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .gallery__title {
      font-size: 45px;
      font-weight: 400;
      line-height: 1.15;
      color: #212121;
      text-align: center;
      letter-spacing: -0.01em;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .gallery__grid {
      display: grid;
      gap: clamp(0.5rem, 1vw, 1rem);
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 300px;
    }

    .gallery__item {
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
      background: var(--beige);
    }

    .gallery__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
      display: block;
    }

    .gallery__item:hover img {
      transform: scale(1.06);
      filter: brightness(0.95);
    }

    .gallery__item:focus-visible {
      outline: 3px solid var(--green);
      outline-offset: 3px;
    }

    /* Mosaic layout — 3 cols x 5 rows, img7 spans 2 rows */
    .gallery__item--1  { grid-column: 1 / span 2; grid-row: 1; }
    .gallery__item--2  { grid-column: 3;          grid-row: 1; }
    .gallery__item--3  { grid-column: 1;          grid-row: 2; }
    .gallery__item--4  { grid-column: 2 / span 2; grid-row: 2; }
    .gallery__item--5  { grid-column: 1;          grid-row: 3; }
    .gallery__item--6  { grid-column: 2;          grid-row: 3; }
    .gallery__item--7  { grid-column: 3;          grid-row: 3 / span 2; }
    .gallery__item--8  { grid-column: 1 / span 2; grid-row: 4; }
    .gallery__item--9  { grid-column: 1;          grid-row: 5; }
    .gallery__item--10 { grid-column: 2 / span 2; grid-row: 5; }
    /* Row 6: larga + estreita (espelha row 1) */
    .gallery__item--11 { grid-column: 1 / span 2; grid-row: 6; }
    .gallery__item--12 { grid-column: 3;          grid-row: 6; }
    /* Row 7: estreita + larga (espelha row 2) */
    .gallery__item--13 { grid-column: 1;          grid-row: 7; }
    .gallery__item--14 { grid-column: 2 / span 2; grid-row: 7; }

    /* CTA "Ver galeria completa" abaixo do grid (só na Home) */
    .gallery__cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: clamp(2rem, 4vw, 3rem);
    }

    .gallery__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      background: var(--green);
      color: #fff;
      font-family: inherit;
      font-size: 1.0625rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 999px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .gallery__cta:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    .gallery__cta:focus-visible {
      outline: 2px solid var(--green-dark);
      outline-offset: 3px;
    }

    /* Tablet: 2 columns */
    @media (max-width: 900px) {
      .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
      }
      .gallery__item--1, .gallery__item--2, .gallery__item--3, .gallery__item--4,
      .gallery__item--5, .gallery__item--6, .gallery__item--7, .gallery__item--8,
      .gallery__item--9, .gallery__item--10, .gallery__item--11, .gallery__item--12,
      .gallery__item--13, .gallery__item--14 {
        grid-column: auto;
        grid-row: auto;
      }
    }

    @media (max-width: 560px) {
      .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
      }
      .gallery__title { font-size: clamp(2rem, 8vw, 2.5rem); }
    }

    /* ============== Lightbox ============== */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(15, 14, 12, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox__stage {
      position: relative;
      max-width: min(1200px, 92vw);
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox__img {
      max-width: 100%;
      max-height: 85vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
      transition: opacity 0.25s ease;
    }

    .lightbox.is-changing .lightbox__img {
      opacity: 0;
    }

    .lightbox__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      transition: background 0.25s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      z-index: 2;
    }

    .lightbox__btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    .lightbox__btn:active { transform: translateY(-50%) scale(0.95); }
    .lightbox__btn:focus-visible {
      outline: 2px solid var(--white);
      outline-offset: 3px;
    }

    .lightbox__btn--prev { left: clamp(0.75rem, 3vw, 2rem); }
    .lightbox__btn--next { right: clamp(0.75rem, 3vw, 2rem); }

    .lightbox__close {
      position: absolute;
      top: clamp(1rem, 3vw, 2rem);
      right: clamp(1rem, 3vw, 2rem);
      transform: none;
      z-index: 3;
    }
    .lightbox__close:active { transform: scale(0.95); }

    .lightbox__counter {
      position: absolute;
      bottom: clamp(1rem, 3vw, 2rem);
      left: 50%;
      transform: translateX(-50%);
      color: var(--white);
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      background: rgba(0, 0, 0, 0.4);
      padding: 0.4rem 1rem;
      border-radius: 999px;
      z-index: 2;
    }

    @media (max-width: 640px) {
      .lightbox__btn { width: 44px; height: 44px; font-size: 1.2rem; }
    }

    body.lightbox-open {
      overflow: hidden;
    }

    /* ============== Events ============== */
    .events {
      padding: clamp(3rem, 6vw, 5rem) var(--gutter);
      background: var(--white);
    }

    .events__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr;
      align-items: stretch;
    }

    .events__image {
      width: 380px;
      height: 535px;
      object-fit: cover;
      display: block;
    }

    .events__content {
      background: var(--beige);
      padding: clamp(2rem, 4vw, 3.5rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .events__content .pill {
      width: 140px;
      justify-content: flex-start;
    }

    .events__title {
      font-family: 'Lora', serif;
      font-size: 35px;
      font-weight: 400;
      line-height: 1.4;
      color: #000;
      margin: 1.25rem 0 1.5rem;
    }

    .events__title strong {
      font-weight: 700;
    }

    .events__desc {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.45;
      color: #555555;
      margin-bottom: 2rem;
    }

    .events__desc p + p {
      margin-top: 1rem;
    }

    .events__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 340px;
      max-width: 100%;
      padding: 1rem 1.5rem;
      background: var(--green);
      color: var(--white);
      font-size: 1rem;
      font-weight: 500;
      border-radius: 4px;
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }

    .events__cta:hover {
      background: var(--green-dark);
      box-shadow: 0 8px 18px -8px rgba(92, 122, 78, 0.5);
    }

    .events__cta:active { transform: translateY(1px); }
    .events__cta:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

    /* Marquee — full bleed band below the events block */
    .events__marquee {
      max-width: var(--max-w);
      margin: 0 auto;
      background: #DED6C9;
      overflow: hidden;
      position: relative;
    }

    .events__marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 40s linear infinite;
      will-change: transform;
    }

    .events__marquee-item {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      padding: 1.5rem 0;
      color: #A38E6B;
      font-family: 'Lora', serif;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .events__marquee-item::after {
      content: '•';
      margin: 0 2.5rem;
      opacity: 0.8;
    }

    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .events__marquee:hover .events__marquee-track {
      animation-play-state: paused;
    }

    /* Responsive */
    @media (max-width: 900px) {
      /* Mobile: usar flex na .events para controlar a ordem
         conteúdo (inner) → marquee → imagem
         Funciona mesmo sem JS. O JS abaixo move a .events__image
         para fora do inner para participar dessa ordem. */
      .events {
        display: flex;
        flex-direction: column;
      }
      .events__inner {
        grid-template-columns: 1fr;
        order: 1;
      }
      /* Fallback: se a imagem ainda estiver dentro do inner, mande pro fim */
      .events__inner .events__image {
        order: 99;
      }
      .events__marquee {
        order: 2;
        width: 100%;
        min-width: 0;
      }
      .events__image {
        width: 100%;
        height: auto;
        max-height: 400px;
      }
      /* Quando JS move a imagem pra ser filha direta de .events */
      .events > .events__image {
        order: 3;
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
        border-radius: var(--radius);
      }
      .events__title { font-size: clamp(1.5rem, 4vw, 2rem); }
      .events__desc { font-size: 1.05rem; }
      .events__marquee-item { font-size: 1.25rem; }
      .events__marquee-item::after { margin: 0 1.5rem; }
    }

    @media (max-width: 560px) {
      .events__cta { width: 100%; }
    }

    /* ============== Friends (Amigos da Rodrigues Farm) ============== */
    .friends {
      padding: 100px var(--gutter);
      background: var(--white);
    }

    .friends__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .friends__head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    }

    .friends__title {
      font-family: 'Lora', serif;
      font-size: 45px;
      font-weight: 400;
      line-height: 1.4;
      color: #000;
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
      text-wrap: balance;
    }

    .friends__title strong {
      font-weight: 600;
    }

    .friends__sub {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.4;
      color: #626262;
    }

    .friends__sub strong {
      font-weight: 600;
    }

    .friends__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    /* Card — same visual pattern as .pillar */
    .friend {
      position: relative;
      background: var(--white);
      border: 1px solid var(--beige);
      border-radius: 6px;
      padding: clamp(1.75rem, 2.8vw, 2.25rem);
      padding-top: clamp(2.5rem, 3.5vw, 3rem);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    }

    /* Inner top tab — same as pillars */
    .friend::before {
      content: '';
      position: absolute;
      top: 0;
      left: clamp(1.75rem, 2.8vw, 2.25rem);
      width: 180px;
      height: 12px;
      background: #DED6C9;
      border-radius: 0 0 6px 6px;
    }

    .friend--featured {
      background: var(--beige);
      border-color: var(--beige);
    }

    .friend:hover {
      transform: scale(1.03);
      box-shadow: 0 18px 36px -20px rgba(31, 29, 26, 0.22);
    }

    .friend__top {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.25rem;
    }

    .friend__icon {
      width: 70px;
      height: 70px;
      flex-shrink: 0;
    }

    .friend__icon img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .friend__price {
      font-family: 'Lora', serif;
      font-size: 45px;
      font-weight: 500;
      line-height: 1;
      color: #685940;
      letter-spacing: -0.01em;
    }

    .friend__title {
      font-family: 'Lora', serif;
      font-size: 25px;
      font-weight: 500;
      line-height: 1.2;
      color: #685940;
      margin-bottom: 0.85rem;
    }

    .friend__desc {
      font-family: 'Lora', serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
      color: #685940;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .friends { padding-top: 100px; }
      .friends__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }
      .friends__title { font-size: clamp(2rem, 6vw, 2.75rem); }
      .friends__sub { font-size: 1.1rem; }
    }

    /* ============== Volunteer (Voluntariados da Farm) ============== */
    .volunteer {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--white);
    }

    .volunteer__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 535px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .volunteer__content {
      max-width: 560px;
    }

    .volunteer__title {
      font-family: 'Lora', serif;
      font-size: 45px;
      font-weight: 400;
      line-height: 1.2;
      color: #212121;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    .volunteer__text {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.5;
      color: #626262;
      margin-bottom: 2rem;
    }

    .volunteer__text p + p {
      margin-top: 1.25rem;
    }

    .volunteer__text strong {
      font-weight: 600;
    }

    .volunteer__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 340px;
      max-width: 100%;
      height: 66px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 500;
      border-radius: 4px;
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }

    .volunteer__cta:hover {
      background: var(--green-dark);
      box-shadow: 0 8px 18px -8px rgba(92, 122, 78, 0.5);
    }

    .volunteer__cta:active { transform: translateY(1px); }
    .volunteer__cta:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

    .volunteer__image {
      width: 535px;
      height: 581px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .volunteer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .volunteer__image {
        width: 100%;
        height: auto;
        aspect-ratio: 535 / 581;
      }
    }

    @media (max-width: 900px) {
      .volunteer { padding-top: 100px; }
      .volunteer__inner {
        grid-template-columns: 1fr;
      }
      .volunteer__content {
        max-width: 100%;
      }
      .volunteer__image {
        max-height: 500px;
        object-position: center;
      }
      .volunteer__title { font-size: clamp(2rem, 6vw, 2.75rem); }
      .volunteer__text { font-size: 1.1rem; }
    }

    @media (max-width: 560px) {
      .volunteer__cta { width: 100%; }
    }

    /* ============== Senior Club ============== */
    .senior {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--beige);
    }

    .senior__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .senior__head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    }

    .senior__title-top {
      font-family: 'Lora', serif;
      font-size: 45px;
      font-weight: 400;
      line-height: 1.4;
      color: #000;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }

    .senior__sub {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.4;
      color: #626262;
      text-wrap: balance;
    }

    .senior__body {
      display: grid;
      grid-template-columns: 1fr 535px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .senior__content {
      max-width: 560px;
    }

    .senior__title {
      font-family: 'Lora', serif;
      font-size: 45px;
      font-weight: 400;
      line-height: 1.4;
      color: #000;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    .senior__text {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.4;
      color: #626262;
      margin-bottom: 2rem;
    }

    .senior__text p + p {
      margin-top: 1.25rem;
    }

    .senior__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 340px;
      max-width: 100%;
      height: 66px;
      background: var(--green);
      color: var(--white);
      font-size: 18px;
      font-weight: 500;
      border-radius: 4px;
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }

    .senior__cta:hover {
      background: var(--green-dark);
      box-shadow: 0 8px 18px -8px rgba(92, 122, 78, 0.5);
    }

    .senior__cta:active { transform: translateY(1px); }
    .senior__cta:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

    /* Image with floating pill tags */
    .senior__media {
      position: relative;
      width: 535px;
      height: 581px;
      max-width: 100%;
    }

    .senior__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .senior__tags {
      position: absolute;
      inset: 0;
      padding: clamp(1rem, 2vw, 1.5rem);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.6rem;
    }

    .senior__tag-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }

    .senior__tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1rem;
      background: var(--white);
      color: #636363;
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 400;
      border-radius: 100px;
      box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.18);
      white-space: nowrap;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .senior__body {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .senior__media {
        width: 100%;
        height: auto;
        aspect-ratio: 535 / 581;
      }
    }

    @media (max-width: 900px) {
      .senior__body {
        grid-template-columns: 1fr;
      }
      .senior__content {
        max-width: 100%;
      }
      .senior__title-top, .senior__title {
        font-size: clamp(2rem, 6vw, 2.75rem);
      }
      .senior__sub, .senior__text {
        font-size: 1.1rem;
      }
      .senior__tag {
        font-size: 14px;
        padding: 0.5rem 0.85rem;
      }
    }

    @media (max-width: 560px) {
      .senior__cta { width: 100%; }
      .senior__tag { font-size: 12px; padding: 0.4rem 0.7rem; white-space: normal; }
      .senior__tag-row { grid-template-columns: 1fr; }
    }

    /* ============== FAQ ============== */
    .faq {
      padding: 75px var(--gutter);
      background: var(--white);
    }

    .faq__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .faq__title {
      font-family: 'Lora', serif;
      font-size: clamp(2rem, 3.5vw, 2.5rem);
      font-weight: 400;
      line-height: 1.2;
      color: #000;
      text-align: center;
      letter-spacing: 0.04em;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .faq__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: start;
    }

    .faq__item {
      background: var(--beige);
      border-radius: 6px;
      overflow: hidden;
    }

    .faq__summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      list-style: none;
      font-family: 'Lora', serif;
      font-size: 18px;
      font-weight: 500;
      color: #3F3026;
      transition: background 0.2s ease;
    }

    .faq__summary::-webkit-details-marker { display: none; }
    .faq__summary::marker { content: ''; }

    .faq__summary:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: -2px;
    }

    .faq__icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .faq__icon--down { display: block; }
    .faq__icon--up   { display: none; }

    .faq__item[open] .faq__icon--down { display: none; }
    .faq__item[open] .faq__icon--up   { display: block; }

    .faq__answer {
      padding: 0 1.5rem 1.5rem;
      font-family: 'Lora', serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: #555;
    }

    /* Smooth expand animation */
    .faq__item[open] .faq__summary {
      padding-bottom: 0.75rem;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .faq__grid {
        grid-template-columns: 1fr;
      }
      .faq__summary { font-size: 16px; padding: 1rem 1.15rem; }
      .faq__answer { padding: 0 1.15rem 1.15rem; font-size: 15px; }
    }

    /* ============== Map ============== */
    .map {
      width: 100%;
      line-height: 0;
    }

    .map iframe {
      width: 100%;
      height: 380px;
      border: 0;
      display: block;
    }

    /* ============== Contact Strip ============== */
    .contact-strip {
      background: #DED6C9;
      padding: 1.25rem var(--gutter);
    }

    .contact-strip__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(1.5rem, 4vw, 3.5rem);
      flex-wrap: wrap;
    }

    .contact-strip__item {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 400;
      color: #404A3D;
      transition: opacity 0.2s ease;
    }

    .contact-strip__item:hover { opacity: 0.7; }

    .contact-strip__icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
    }

    .contact-strip__icon img {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* ============== Footer ============== */
    .footer {
      background: var(--white);
      padding: clamp(3rem, 5vw, 4.5rem) var(--gutter) 1.5rem;
    }

    .footer__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.2fr;
      gap: clamp(1.5rem, 3vw, 3rem);
      align-items: start;
    }

    .footer__logo {
      display: inline-block;
      margin-bottom: 1.25rem;
    }

    .footer__logo img {
      height: 36px;
      width: auto;
      display: block;
    }

    .footer__slogan {
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
      color: #666666;
      max-width: 280px;
      margin-bottom: 1.5rem;
    }

    .footer__socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer__social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .footer__social:hover {
      transform: translateY(-2px);
      opacity: 0.85;
    }

    .footer__social img {
      width: 40px;
      height: 40px;
      display: block;
    }

    .footer__heading {
      font-family: 'Lora', serif;
      font-size: 18px;
      font-weight: 500;
      color: #404A3D;
      margin-bottom: 1.25rem;
    }

    .footer__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer__list a,
    .footer__text {
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
      color: #666666;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer__list a:hover {
      color: #404A3D;
    }

    .footer__address {
      font-style: normal;
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
      color: #666666;
    }

    .footer__divider {
      height: 1px;
      background: #DED6C9;
      margin: clamp(2.5rem, 4vw, 3.5rem) 0 1.5rem;
    }

    .footer__copy {
      text-align: center;
      font-family: 'Lora', serif;
      font-size: 14px;
      font-weight: 400;
      color: #222222;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
      .footer__brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 700px) {
      .footer__grid {
        grid-template-columns: 1fr 1fr;
      }
      .footer__brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 480px) {
      .footer__grid {
        grid-template-columns: 1fr;
      }
      .footer__brand {
        grid-column: auto;
      }
      .map iframe { height: 280px; }
      .contact-strip__inner { gap: 1rem; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .hero__slide.is-active { animation: none; }
    }

    /* ================================================================== */
    /* ============== PÁGINA DE EVENTOS (eventos.html) ================== */
    /* ================================================================== */

    /* --- HERO EVENTOS --- */
    .eventos-hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: clamp(8rem, 14vh, 11rem) var(--gutter) clamp(4rem, 7vh, 6rem);
      background-image: url('assets/eventos-hero-desktop.webp');
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .eventos-hero { background-image: url('assets/eventos-hero-tablet.webp'); }
    }
    @media (max-width: 767px) {
      .eventos-hero { background-image: url('assets/eventos-hero-mobile.webp'); min-height: 80vh; }
    }

    .eventos-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(31, 29, 26, 0.45) 0%, rgba(31, 29, 26, 0.30) 50%, rgba(31, 29, 26, 0.55) 100%);
      pointer-events: none;
    }

    .eventos-hero__content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
    }

    .eventos-hero__title {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-size: clamp(2rem, 5vw, 56px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: #fff;
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
      text-wrap: balance;
      max-width: 1020px;
      margin-left: auto;
      margin-right: auto;
    }

    .eventos-hero__sub {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.05rem, 1.8vw, 22px);
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 2.25rem;
      opacity: 0.95;
      text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
      max-width: 56ch;
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }

    .eventos-hero__actions {
      display: flex;
      gap: 0.9rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* --- SOBRE OS EVENTOS --- */
    .eventos-about {
      padding: clamp(4rem, 8vw, 7rem) var(--gutter);
      background: var(--white);
    }

    .eventos-about__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 1fr) 1.55fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }

    .eventos-about__title {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.85rem, 3.5vw, 42px);
      font-weight: 400;
      line-height: 1.2;
      color: #212121;
      letter-spacing: -0.01em;
      text-wrap: balance;
    }
    .eventos-about__title strong { font-weight: 700; }

    .eventos-about__lede {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.4vw, 20px);
      font-weight: 400;
      line-height: 1.4;
      color: #626262;
      padding-top: 0.5rem;
      justify-self: end;
      max-width: 640px;
    }

    @media (max-width: 900px) {
      .eventos-about__inner { grid-template-columns: 1fr; gap: 1.25rem; }
    }

    /* --- CARDS DE EVENTOS (zigzag) --- */
    .eventos-list {
      padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
      background: var(--white);
    }

    .eventos-list__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: clamp(2.5rem, 5vw, 4rem);
    }

    .evento-card {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: clamp(2rem, 4vw, 3.5rem);
      align-items: center;
      background: var(--white);
      border: 1px solid #EBEBEB;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 2px rgba(31, 29, 26, 0.04), 0 8px 24px -16px rgba(31, 29, 26, 0.08);
      padding: clamp(1.25rem, 2.5vw, 2rem);
      transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
    }

    .evento-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 1px 2px rgba(31, 29, 26, 0.05), 0 16px 32px -16px rgba(31, 29, 26, 0.15);
    }

    /* Zigzag: cards pares ficam invertidos */
    .evento-card--reverse {
      grid-template-columns: 1fr 380px;
    }
    .evento-card--reverse .evento-card__image {
      order: 2;
    }
    .evento-card--reverse .evento-card__body {
      order: 1;
    }

    .evento-card__image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
      border-radius: 6px;
    }

    .evento-card__body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 0 0.5rem;
    }

    /* Pill EVENTOS — fundo bege claro com bullet verde */
    .evento-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Lora', Georgia, serif;
      font-size: 18px;
      font-weight: 400;
      color: #636363;
      background: #F2EFEA;
      padding: 0.5rem 1.1rem;
      border-radius: 999px;
      align-self: flex-start;
      line-height: 1;
    }
    .evento-pill::before {
      content: '';
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green, #5a7142);
    }

    .evento-card__title {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.75rem, 3vw, 40px);
      font-weight: 400;
      line-height: 1.4;
      color: #212121;
      letter-spacing: -0.005em;
      text-wrap: balance;
    }

    .evento-card__desc {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.6vw, 22px);
      font-weight: 400;
      line-height: 1.5;
      color: #555555;
      max-width: 52ch;
    }

    .evento-card__cta {
      align-self: flex-start;
      margin-top: 0.5rem;
      padding: 0.85rem 2rem;
      background: var(--green, #5a7142);
      color: #fff;
      border-radius: 4px;
      font-family: 'Lora', Georgia, serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
    }
    .evento-card__cta:hover {
      background: var(--green-dark, #404a3d);
      transform: translateY(-1px);
    }

    /* Responsivo dos cards: empilhado conteúdo → imagem */
    @media (max-width: 900px) {
      .evento-card,
      .evento-card--reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .evento-card__image {
        height: clamp(260px, 50vw, 360px);
        order: 2;
      }
      .evento-card__body {
        order: 1;
        padding: 0;
      }
      .evento-card--reverse .evento-card__image { order: 2; }
      .evento-card--reverse .evento-card__body  { order: 1; }
    }

    /* --- CTA "Transforme seu momento" --- */
    .eventos-cta {
      padding: clamp(2rem, 5vw, 4rem) var(--gutter);
      background: var(--white);
    }

    .eventos-cta__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      min-height: 270px;
      border-radius: 8px;
      background-image: linear-gradient(rgba(64, 74, 61, 0.55), rgba(64, 74, 61, 0.55)), url('assets/eventos-cta-bg.webp');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    }

    .eventos-cta__content {
      max-width: 580px;
    }

    .eventos-cta__title {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1.5rem, 3vw, 32px);
      font-weight: 400;
      line-height: 1.25;
      color: #fff;
      margin-bottom: 1.5rem;
      letter-spacing: -0.005em;
      text-wrap: balance;
    }

    .eventos-cta__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1.75rem;
      background: #fff;
      color: #212121;
      border-radius: 4px;
      font-family: 'Lora', Georgia, serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .eventos-cta__btn:hover {
      background: #f4f0e8;
      transform: translateY(-1px);
    }
    .eventos-cta__btn img {
      width: 18px;
      height: 22px;
      display: block;
    }

    @media (max-width: 600px) {
      .eventos-cta__inner {
        min-height: 220px;
      }
      .eventos-cta__title { font-size: clamp(1.25rem, 5vw, 1.5rem); }
    }

    /* ================================================================== */
    /* ============== PÁGINA DE GALERIA (galeria.html) ================== */
    /* ================================================================== */

    /* Header sólido em páginas internas (não fica sobre hero translúcido) */
    .galeria-hero {
      background: var(--beige, #F2EFEA);
      padding: clamp(7rem, 14vh, 10rem) var(--gutter) clamp(2.5rem, 6vh, 4rem);
      text-align: center;
    }

    .galeria-hero__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .galeria-hero__title {
      font-family: 'Libre Baskerville', Georgia, serif;
      font-size: clamp(2rem, 5vw, 56px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: var(--ink, #212121);
      margin: 0 0 0.875rem;
      text-wrap: balance;
    }

    .galeria-hero__sub {
      font-family: 'Lora', Georgia, serif;
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      font-weight: 400;
      line-height: 1.5;
      color: var(--ink-soft, #555);
      max-width: 720px;
      margin: 0 auto;
      text-wrap: balance;
    }

    /* Na página de galeria, a section .gallery já tem padding generoso —
       só ajusto o top porque o hero já cuida do espaçamento superior */
    body .galeria-hero + .gallery {
      padding-top: clamp(1.5rem, 4vw, 2.5rem);
    }
    body .galeria-hero + .gallery .gallery__title { display: none; }

    /* Header sólido em páginas internas que NÃO têm hero escuro de fundo */
    body.page--galeria .header {
      background: var(--green-dark, #404a3d);
      box-shadow: 0 2px 14px -8px rgba(31, 29, 26, 0.25);
    }

