:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text: #24211e;
  --muted: #6f6861;
  --primary: #9d7a4f;
  --primary-dark: #7f623f;
  --accent: #d5b78b;
  --line: #ebe4dc;
  --shadow: 0 16px 35px rgba(36, 33, 30, 0.08);
  --page-max: 1120px;
  --page-gutter: clamp(1rem, 4vw, 1.75rem);
}

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

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 7.5rem;
}

.container {
  width: min(var(--page-max), calc(100% - var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: 0;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  overflow: visible;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  overflow: visible;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav > a:not(.nav-cta),
.nav-dropdown-link {
  padding: 0.45rem 0.55rem;
}

.nav > a:not(.nav-cta)::after,
.nav-dropdown-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 99px;
  background: #4f5d39;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav > a:not(.nav-cta):hover,
.nav > a:not(.nav-cta):focus-visible,
.nav-dropdown:hover > .nav-dropdown-link,
.nav-dropdown:focus-within > .nav-dropdown-link,
.nav-dropdown.open > .nav-dropdown-link {
  color: #4f5d39;
  background: rgba(79, 93, 57, 0.08);
  transform: translateY(-1px);
}

.nav > a:not(.nav-cta):hover::after,
.nav > a:not(.nav-cta):focus-visible::after,
.nav-dropdown:hover > .nav-dropdown-link::after,
.nav-dropdown:focus-within > .nav-dropdown-link::after,
.nav-dropdown.open > .nav-dropdown-link::after {
  transform: scaleX(1);
}

.nav a:focus-visible {
  outline: 2px solid rgba(79, 93, 57, 0.38);
  outline-offset: 3px;
}

.nav-dropdown {
  position: relative;
}

.nav {
  overflow: visible;
}

.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
}

.nav-submenu-group + .nav-submenu-group {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.nav-submenu-heading {
  display: block;
  padding: 0.35rem 0.7rem 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4f5d39;
  line-height: 1.3;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  max-height: min(72vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem;
  padding-top: calc(0.65rem + 0.45rem);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.45rem;
}

.nav-submenu-group.is-collapsible .nav-submenu-nested {
  display: block;
}

.nav-submenu-group.is-collapsible .nav-submenu-heading {
  pointer-events: none;
  cursor: default;
}

.nav-submenu a,
.nav-submenu-nested a {
  display: block;
  padding: 0.58rem 0.7rem;
  font-size: 0.88rem;
  line-height: 1.3;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu-nested a:hover,
.nav-submenu-nested a:focus-visible {
  background: #4f5d39;
  color: #fff !important;
  transform: translateX(4px);
  outline: none;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.open .nav-submenu {
  display: block;
}

.nav-submenu-group.is-collapsible .nav-submenu-heading {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  padding-right: 1.6rem;
}

.nav-submenu-group.is-collapsible .nav-submenu-heading::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #4f5d39;
  border-bottom: 2px solid #4f5d39;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-submenu-group.is-collapsible.open .nav-submenu-heading::after {
  transform: translateY(-35%) rotate(-135deg);
}

@media (min-width: 981px) {
  .nav-submenu-group.is-collapsible .nav-submenu-heading::after {
    display: none;
  }
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.nav-mobile-bar {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-brand-group {
  display: contents;
}

.nav-mobile-home,
.nav-mobile-cta {
  display: none;
}

.nav-backdrop {
  display: none;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #4f5d39;
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -7px;
}

.menu-toggle-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background: #2f261f;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7s ease;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(157, 122, 79, 0.52), rgba(40, 33, 27, 0.62)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  z-index: -1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.5) 1px, transparent 0);
  background-size: 4px 4px;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 6rem 0 4.5rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  opacity: 0.9;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  margin: 1rem 0 1.2rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.section-title-green {
  color: #4f5d39;
}

.hero p {
  margin: 0 auto;
  font-size: 1.08rem;
  max-width: 740px;
}

.hero-signature {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #f2e7d8;
}

.signature-line {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: #f2e7d8;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  padding: 0.8rem;
}

.trust-item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.trust-item span {
  font-size: 0.86rem;
  opacity: 0.92;
}

.hero-card {
  position: absolute;
  right: 4%;
  bottom: 5.5rem;
  width: min(320px, 88%);
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(20, 14, 9, 0.25);
  z-index: 2;
}

.hero-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hero-card h3 {
  margin-bottom: 0.45rem;
}

.hero-card p {
  color: #473f39;
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.82rem 1.3rem;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-form-submit {
  background: #4f5d39;
}

.btn-form-submit:hover {
  background: #5d6e44;
}

#contactForm .btn-form-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1.05rem 1.4rem;
  font-size: 1.08rem;
  border-radius: 999px;
}

.btn-green-pulse {
  background: #4f5d39;
  color: #fff;
  border: none;
  animation: btn-green-pulse 2.2s ease-in-out infinite;
}

.btn-green-pulse:hover,
.btn-green-pulse:focus-visible {
  background: #5d6e44;
  color: #fff;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 93, 57, 0.35);
}

@keyframes btn-green-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(79, 93, 57, 0.28);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(79, 93, 57, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-green-pulse {
    animation: none;
  }
}

.btn-secondary {
  background: #fff;
  color: var(--text);
}

.section {
  padding: 5.2rem 0;
}

.section-address {
  color: var(--text);
  font-weight: 600;
  margin-top: 0.15rem;
  margin-bottom: 1rem;
  max-width: 720px;
  line-height: 1.5;
}

.localizacao-top {
  margin-bottom: 1.75rem;
  align-items: start;
}

.localizacao-intro {
  margin-bottom: 0;
}

.localizacao-contato {
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  background: #f8f4ee;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.localizacao-contato-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #4f5d39;
}

.localizacao-contato p {
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.localizacao-contato a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.localizacao-contato a:hover {
  color: var(--primary-dark);
}

.localizacao-instagram {
  margin-top: 0.35rem;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.parceiro-card {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px dashed #c9bfb3;
  text-align: center;
  box-shadow: var(--shadow);
}

.parceiro-card--placeholder {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.parceiro-categoria {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(79, 93, 57, 0.12);
  color: #4f5d39;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.parceiro-logo-slot {
  width: 100%;
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f8f4ee;
  border: 1px solid var(--line);
}

.parceiro-logo-placeholder {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.parceiro-contato-slot {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.parceiros-note {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

.accessibility-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 700px;
}

.accessibility-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 500;
}

.accessibility-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.55rem;
}

.pricing-cards {
  grid-template-columns: repeat(3, 1fr);
}

.buffet-section {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #f8f4ee 0%, #ffffff 55%, #f3eee8 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.buffet-header {
  margin-bottom: 1.5rem;
}

.buffet-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(79, 93, 57, 0.12);
  color: #4f5d39;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buffet-lead {
  color: var(--muted);
  max-width: 720px;
  margin-top: 0.5rem;
  font-size: 1.02rem;
}

.buffet-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.buffet-included-card {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.buffet-included-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4f5d39;
}

.buffet-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.buffet-pill-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f3eee8;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.buffet-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.buffet-option {
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buffet-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 33, 30, 0.1);
}

.buffet-option--highlight {
  border-color: #4f5d39;
  box-shadow: 0 0 0 1px rgba(79, 93, 57, 0.15);
}

.buffet-option-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.buffet-option-head h3 {
  margin-bottom: 0.35rem;
  color: #4f5d39;
}

.buffet-option-head p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.buffet-menu-groups {
  display: grid;
  gap: 1rem;
}

.buffet-menu-group h4 {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.buffet-dish-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.buffet-dish-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.94rem;
}

.buffet-dish-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f5d39;
}

.buffet-footer {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.buffet-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card .btn {
  margin-top: 0.9rem;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-4px);
}

.card h3 {
  color: #4f5d39;
  margin-bottom: 0.5rem;
}

.estrutura-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.estrutura-head {
  margin-bottom: 1.4rem;
}

.estrutura-title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #4f5d39;
}

.estrutura-intro {
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.estrutura-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.estrutura-kpi {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d8d2c7;
  background: linear-gradient(165deg, #ffffff 0%, #f6f1e9 100%);
}

.estrutura-kpi strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #4f5d39;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.estrutura-kpi span {
  color: #2f2a25;
  font-weight: 600;
  font-size: 0.9rem;
}

.estrutura-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.estrutura-group-title {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4f5d39;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f5d39;
}

.estrutura-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  list-style: none;
}

.estrutura-grid li {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(36, 33, 30, 0.04);
}

.estrutura-grid li strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #2f2a25;
  font-size: 0.9rem;
}

.estrutura-grid li span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
}

.estrutura-gallery-block {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.estrutura-gallery-head h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #4f5d39;
}

.estrutura-gallery-head p {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.estrutura-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.7rem);
  width: 100%;
  align-items: stretch;
}

.estrutura-gallery-grid .photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 8.5rem;
}

.estrutura-gallery-grid .photo .gallery-coming-soon {
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  text-align: center;
  padding: 0.5rem;
}

.estrutura-gallery-grid .photo figcaption {
  font-size: 0.75rem;
  padding: 0.5rem 0.55rem;
}

.section-highlight {
  background: #f3eee8;
}

#espaco h2,
.eventos-gallery-section h1 {
  margin-bottom: 1.4rem;
}

#espaco p,
.eventos-gallery-section > .container > div > p {
  text-align: justify;
}

#espaco .estrutura-gallery-block,
.eventos-gallery-section .estrutura-gallery-block {
  margin-top: 1.6rem;
  border-top: none;
  padding-top: 0;
}

#espaco .estrutura-gallery-block .cerimonia-gallery-panel,
.eventos-gallery-section .estrutura-gallery-block .cerimonia-gallery-panel {
  margin-top: 1rem;
}

.eventos-gallery-section h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.3rem;
  position: relative;
}

.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.5vw, 0.8rem);
  width: 100%;
  align-items: stretch;
}

.photo {
  border-radius: 14px;
  min-height: 185px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.gallery-grid .photo,
.hero-gallery .photo,
.estrutura-gallery-grid .photo,
.gallery-grid--deck-expanded .photo {
  min-height: 0;
  isolation: isolate;
}

.gallery-grid .photo > img,
.hero-gallery .photo > img,
.estrutura-gallery-grid .photo > img,
.gallery-grid--deck-expanded .photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.photo:hover img {
  transform: scale(1.03);
}

.photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.8rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent);
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(0, 0, 0, 0.86);
}

.photo-modal.open {
  display: flex;
}

.photo-modal-img {
  max-width: min(96vw, 1280px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.photo-modal-close,
.photo-modal-arrow {
  position: fixed;
  z-index: 101;
  border: none;
  cursor: pointer;
}

.photo-modal-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #24211e;
  font-size: 2rem;
  line-height: 1;
}

.photo-modal-arrow {
  top: 50%;
  width: 52px;
  height: 64px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.photo-modal-arrow:hover,
.photo-modal-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.photo-modal-prev {
  left: 12px;
}

.photo-modal-next {
  right: 12px;
}

.photo-modal-counter {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 101;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 340px;
  border: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.instagram-item {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.instagram-item:hover img {
  transform: scale(1.03);
}

.instagram-btn {
  margin-top: 1.1rem;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.google-review-card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.google-review-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.google-review-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #dbe7ff;
  color: #1a4fb3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.google-review-author {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-review-author strong {
  font-size: 0.92rem;
  color: #202124;
}

.google-review-author span {
  font-size: 0.78rem;
  color: #5f6368;
}

.google-review-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a73e8;
  background: #e8f0fe;
  border-radius: 999px;
  padding: 0.2rem 0.48rem;
}

.google-review-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}

.google-review-text {
  color: #3c4043;
  font-size: 0.92rem;
  line-height: 1.5;
}

.eventos-info-hub {
  border-top: 1px solid var(--line);
  background: #f8f4ee;
}

.eventos-info-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  align-items: stretch;
}

.eventos-info-hub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.eventos-info-hub-card h3 {
  margin-bottom: 0.65rem;
  color: #4f5d39;
  font-size: 1rem;
}

.eventos-info-hub-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.eventos-info-hub-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.eventos-info-hub-list a::before {
  content: "→";
  color: #4f5d39;
  font-size: 0.85rem;
}

.eventos-info-hub-list a:hover,
.eventos-info-hub-list a:focus-visible {
  color: #4f5d39;
  transform: translateX(3px);
}

.ride-apps-wrap {
  margin-top: 1.25rem;
}

.ride-apps-label {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ride-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.ride-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  min-width: 5.25rem;
  min-height: 5.25rem;
  padding: 0.45rem;
  border-radius: 16px;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ride-app-btn:hover {
  transform: translateY(-2px);
}

.ride-app-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.ride-app-btn--uber {
  background: #000000;
  color: #ffffff;
}

.ride-app-btn--99 {
  background: #ffdd00;
  color: #00514b;
}

.ride-app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
}

.ride-app-btn--uber .ride-app-icon {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.ride-app-btn--99 .ride-app-icon {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}

.ride-app-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.faq-list {
  max-width: 880px;
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin-top: 0.5rem;
  color: var(--muted);
}

blockquote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  color: #3f3b37;
}

cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

.cta-final {
  background: linear-gradient(120deg, #3a2a1d, #6f5235);
  color: #fff;
  text-align: center;
}

.cta-content p {
  opacity: 0.92;
  margin: 0 auto 1.2rem;
  max-width: 650px;
}

.form {
  max-width: 720px;
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.form-trust-note {
  max-width: 720px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-divider {
  max-width: 720px;
  margin: 1.35rem 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 720px;
  margin-top: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  animation: btn-whatsapp-direct-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-whatsapp-direct:hover,
.btn-whatsapp-direct:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #2ee676 0%, #25d366 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  animation: none;
}

.btn-whatsapp-direct-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.btn-whatsapp-direct-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.3;
  text-align: left;
}

.btn-whatsapp-direct-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.btn-whatsapp-direct-action {
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-whatsapp-direct-number {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.95;
}

@keyframes btn-whatsapp-direct-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp-direct {
    animation: none;
  }
}

.contact-form-success {
  max-width: 720px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form-success h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: #4f5d39;
  line-height: 1.3;
}

.contact-form-success-lead {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-form-success-note {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form-success .btn-whatsapp-direct {
  margin-top: 0.5rem;
}

#contato .container > [hidden] {
  display: none !important;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4c9bc;
  border-radius: 11px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: var(--surface);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(157, 122, 79, 0.35);
  border-color: var(--primary);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #4c4640;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4c4640;
  font-weight: 600;
  text-decoration: none;
}

.footer-instagram:hover {
  color: var(--primary);
}

.footer-instagram img {
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  text-decoration: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.whatsapp-float.is-pulsing {
  animation: none;
}

.whatsapp-float-icon {
  display: block;
  width: 4.25rem;
  height: auto;
  max-width: min(4.25rem, 18vw);
  object-fit: contain;
}

@keyframes whatsapp-mobile-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 12px 26px rgba(35, 172, 25, 0.45));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .container {
    width: min(1120px, 94%);
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    padding: 4.8rem 0 2.8rem;
  }

  .hero-card {
    position: static;
    margin: 0 auto 1.6rem;
  }

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

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

  .estrutura-groups {
    grid-template-columns: 1fr;
  }

  .estrutura-kpis {
    grid-template-columns: 1fr;
  }

  .estrutura-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .estrutura-gallery-grid .photo {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .buffet-section {
    padding: 1.25rem;
  }

  .buffet-included,
  .buffet-options {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .container {
    width: min(1120px, 95%);
  }

  .nav-wrap {
    min-height: 58px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    transform: scale(1);
  }

  .brand {
    font-size: 1.2rem;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6.5vw, 1.95rem);
  }

  .hero-content {
    padding: 4.2rem 0 2.2rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-signature {
    font-size: 0.86rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.72rem;
  }

  .hero-card {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(79, 93, 57, 0.2);
    background: rgba(79, 93, 57, 0.05);
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: rgba(79, 93, 57, 0.1);
    border-color: rgba(79, 93, 57, 0.3);
    transform: none;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    width: 17px;
  }

  .menu-toggle-icon::before {
    top: -5px;
  }

  .menu-toggle-icon::after {
    top: 5px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-mobile-bar {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-brand-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .nav-mobile-home {
    display: none;
    align-items: center;
    padding: 0.34rem 0.55rem;
    border-radius: 7px;
    color: #4f5d39;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  body.nav-submenu-open .nav-mobile-home,
  .nav-wrap:not(:has(#menuToggle)) .nav-mobile-home {
    display: inline-flex;
  }

  .nav-mobile-home:hover,
  .nav-mobile-home:focus-visible {
    background: rgba(79, 93, 57, 0.1);
    transform: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.55rem;
    border-radius: 7px;
    background: #4f5d39;
    color: #fff !important;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
  }

  .nav-mobile-cta:hover,
  .nav-mobile-cta:focus-visible {
    background: #5d6e44;
    transform: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    top: calc(58px + env(safe-area-inset-top, 0px));
    z-index: 200;
    background: rgba(35, 32, 28, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-backdrop.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-wrap {
    position: relative;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 210;
    isolation: isolate;
  }

  body.nav-open .header {
    z-index: 210;
  }

  .nav-backdrop {
    z-index: 200;
  }

  .nav:not(.nav--compact) {
    position: fixed;
    top: 58px;
    top: calc(58px + env(safe-area-inset-top, 0px));
    right: 0;
    bottom: auto;
    left: auto;
    width: min(238px, 72vw);
    height: auto;
    max-height: calc(100svh - 58px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    min-width: 0;
    margin: 0;
    padding: 0.65rem 0.58rem 0.55rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    background: #fff;
    border: none;
    border-left: 1px solid var(--line);
    border-radius: 0 0 0 12px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.14);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease;
    z-index: 205;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: flex;
  }

  .nav:not(.nav--compact).open {
    transform: translate3d(0, 0, 0);
  }

  .nav--compact {
    display: none;
  }

  .nav a {
    font-size: 0.82rem;
    padding: 0.44rem 0.52rem;
    border-radius: 8px;
    white-space: normal;
    line-height: 1.35;
  }

  .nav > a:not(.nav-cta):hover,
  .nav > a:not(.nav-cta):focus-visible,
  .nav-dropdown.open > .nav-dropdown-link {
    color: #4f5d39;
    background: rgba(79, 93, 57, 0.08);
    transform: none;
  }

  .nav > a:not(.nav-cta)::after,
  .nav-dropdown-link::after {
    left: 0.58rem;
    right: 0.58rem;
    bottom: 0.28rem;
    height: 1.5px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .nav-dropdown-link {
    width: 100%;
    justify-content: space-between;
    padding-right: 1.75rem;
  }

  .nav-dropdown .nav-dropdown-link::before {
    content: "";
    position: absolute;
    right: 0.65rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #4f5d39;
    border-bottom: 2px solid #4f5d39;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.22s ease;
  }

  .nav-dropdown.open .nav-dropdown-link::before {
    transform: translateY(-35%) rotate(-135deg);
  }

  .nav-submenu {
    position: static;
    min-width: 100%;
    margin: 0.12rem 0 0.2rem;
    padding: 0.22rem;
    box-shadow: none;
    border: 1px solid rgba(79, 93, 57, 0.1);
    border-radius: 8px;
    background: #f8f4ee;
    display: none;
  }

  .nav-dropdown.open .nav-submenu {
    display: block !important;
  }

  .nav-dropdown:not(.open):hover .nav-submenu,
  .nav-dropdown:not(.open):focus-within .nav-submenu {
    display: none !important;
  }

  .nav-submenu a,
  .nav-submenu-nested a {
    padding: 0.44rem 0.52rem;
    font-size: 0.76rem;
    line-height: 1.35;
    border-radius: 7px;
    white-space: normal;
  }

  .nav-submenu-group + .nav-submenu-group {
    margin-top: 0.28rem;
    padding-top: 0.28rem;
    border-top-color: rgba(79, 93, 57, 0.12);
  }

  .nav-submenu-heading {
    padding: 0.3rem 0.52rem 0.15rem;
    font-size: 0.68rem;
  }

  .nav-submenu {
    max-height: none;
    overflow-y: visible;
    padding-top: 0.22rem;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu-group.is-collapsible .nav-submenu-nested {
    display: none;
    margin-top: 0.08rem;
    padding-left: 0.15rem;
  }

  .nav-submenu-group.is-collapsible.open .nav-submenu-nested {
    display: block;
  }

  .nav-submenu-group.is-collapsible .nav-submenu-heading {
    pointer-events: auto;
    cursor: pointer;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible,
  .nav-submenu-nested a:hover,
  .nav-submenu-nested a:focus-visible {
    background: #4f5d39;
    color: #fff !important;
    transform: translateX(3px);
  }

  .nav-submenu-group.is-collapsible .nav-submenu-heading:focus-visible {
    outline: 2px solid rgba(79, 93, 57, 0.38);
    outline-offset: 2px;
  }

  .nav-como-chegar {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
    padding: 0.52rem 0.75rem !important;
    font-size: 0.82rem !important;
  }

  .nav-cta {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
    margin-bottom: 0.15rem;
    padding: 0.58rem 0.75rem !important;
    font-size: 0.82rem !important;
  }

  .section {
    padding: 4rem 0;
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }

  .hero-cta .btn {
    max-width: 310px;
  }

  .split {
    gap: 1.3rem;
  }

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

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

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .split .photo,
  .split .photo img,
  .instagram-item img {
    min-height: 210px;
  }

  .map-card iframe {
    height: 280px;
  }

  .faq-list details {
    padding: 0.8rem 0.85rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float-icon {
    width: 3.65rem;
    max-width: min(3.65rem, 20vw);
  }

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

  #diferenciais .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-copy {
    padding-top: clamp(0.85rem, 3.5vw, 1.1rem);
  }

  .hero-media {
    min-height: clamp(220px, 36dvh, 400px);
    margin-top: clamp(-14px, -2.5vw, -20px);
  }

  .hero-copy h1 {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  }

  .hero-copy p {
    font-size: clamp(0.86rem, 3.4vw, 0.98rem);
  }

  .nav-mobile-cta {
    font-size: 0.7rem;
    padding: 0.3rem 0.45rem;
  }

  .nav:not(.nav--compact) {
    width: min(228px, 78vw);
  }

  #espaco h2,
  .eventos-gallery-section h1 {
    font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  }

  #espaco p,
  .eventos-gallery-section > .container > div > p {
    font-size: clamp(0.88rem, 3.2vw, 0.95rem);
  }

  #espaco .estrutura-gallery-grid .photo,
  .eventos-gallery-section .estrutura-gallery-grid .photo {
    min-height: 7.5rem;
  }

  #espaco .photo figcaption,
  .eventos-gallery-section .photo figcaption {
    font-size: clamp(0.68rem, 2.8vw, 0.75rem);
  }

  .hero-content {
    padding: 3.7rem 0 1.7rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .hero-cta {
    margin-top: 1.3rem;
    gap: 0.62rem;
  }

  .hero-trust {
    margin-top: 1.35rem;
  }

  .trust-item strong {
    font-size: 1.12rem;
  }

  .trust-item span {
    font-size: 0.8rem;
  }

  .card {
    padding: 1rem;
  }

  .split .photo,
  .split .photo img {
    min-height: 185px;
  }

  .map-card iframe {
    height: 230px;
  }

  .form {
    gap: 0.55rem;
  }

  input,
  select,
  textarea {
    padding: 0.66rem 0.75rem;
  }

  .footer {
    padding: 1.45rem 0;
  }
}

@media (max-width: 360px) {
  .brand {
    max-width: 165px;
    line-height: 1.2;
  }

  h1 {
    font-size: 1.55rem;
  }

  .btn {
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
  }

  .nav {
    min-width: 92vw;
  }
}

/* Layout refinado da primeira dobra */
.top-strip {
  background: #ffffff;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.top-strip-content {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.top-strip-content p {
  margin: 0;
  line-height: 1.4;
}

.top-strip a {
  color: var(--text);
  text-decoration: none;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.5);
}

.nav-wrap {
  min-height: 82px;
}

.nav {
  align-items: center;
}

.header .brand,
.header .nav a {
  color: var(--text);
}

.header .nav a.nav-como-chegar {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  color: #4f5d39 !important;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header .nav a.nav-como-chegar:hover,
.header .nav a.nav-como-chegar:focus-visible {
  background: #4f5d39;
  color: #fff !important;
  transform: translateY(-1px);
}

.header .nav a.nav-cta {
  display: inline-block;
  background: #4f5d39;
  color: #fff !important;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: nav-cta-pulse 2.2s ease-in-out infinite;
}

.header .nav a.nav-cta:hover,
.header .nav a.nav-cta:focus-visible {
  background: #5d6e44;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(79, 93, 57, 0.22);
}

@keyframes nav-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 93, 57, 0.55);
  }
  55% {
    box-shadow: 0 0 0 14px rgba(79, 93, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 93, 57, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header .nav a.nav-cta {
    animation: none;
  }

  .hero-copy h1,
  .hero-copy p {
    transition: none;
  }
}

.hero {
  background: #4f5d39;
  min-height: auto;
  padding: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 1.28fr;
  align-items: center;
  min-height: 620px;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(4vw, calc((100vw - 1120px) / 2));
}

.hero-copy {
  padding: 1.8rem 1rem 1.8rem 0;
  text-align: left;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #f8f5ee;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy p {
  max-width: 520px;
  color: #f2eee4;
  font-size: 1.06rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy.is-changing h1,
.hero-copy.is-changing p {
  opacity: 0;
  transform: translateY(12px);
}

.hero-media {
  position: relative;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide-focus-middle {
  background-position: center 68%;
}

.hero-slide-focus-girl {
  background-position: center 78%;
}

.hero-slide-formatura {
  background-size: cover;
  background-position: center 18%;
}

.hero-slide-focus-ambiente {
  background-position: center 52%;
}

.hero-slide-focus-noivos {
  background-position: center 58%;
}

.hero-photo-credit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #000;
  font-size: 12px;
  line-height: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #4f5d39 0%,
    rgba(79, 93, 57, 0.45) 14%,
    rgba(79, 93, 57, 0) 26%
  );
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 72px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 200;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: #d9c089;
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow-prev {
  left: 18px;
}

.hero-arrow-next {
  right: 18px;
}

.hero-gallery {
  background: #4f5d39;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.gallery-page {
  background: #faf8f5;
  width: 100%;
}

.gallery-page-top {
  background: #4f5d39;
  width: 100%;
}

.gallery-page .hero-gallery-head {
  padding: clamp(1.5rem, 4vw, 2.2rem) 0 clamp(1rem, 2.5vw, 1.35rem);
}

.hero-gallery-head {
  padding: clamp(1.5rem, 4vw, 2.2rem) 0 clamp(1rem, 2.5vw, 1.4rem);
}

.hero-gallery-head h1 {
  margin: 0 0 0.55rem;
  color: #f8f5ee;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.12;
  max-width: 100%;
  text-wrap: balance;
}

.hero-gallery-head p {
  margin: 0;
  max-width: 42rem;
  color: #f2eee4;
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  line-height: 1.5;
}

.gallery-page .hero-gallery-head h1,
.gallery-page .hero-gallery-head p {
  width: 100%;
}

.hero-gallery-media {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 68dvh, 760px);
  overflow: hidden;
  cursor: zoom-in;
}

.hero-gallery-media .hero-slides {
  position: absolute;
  inset: 0;
}

.hero-gallery .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-gallery:has(.cerimonia-gallery-bar) .hero-gallery-head {
  padding-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.cerimonia-gallery-bar {
  background: #faf8f5;
  margin-top: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.cerimonia-gallery-bar .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.hero-gallery .gallery-grid--row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.15rem);
  width: 100%;
  align-items: stretch;
  justify-items: stretch;
}

.hero-gallery .gallery-grid--row .photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: clamp(280px, 26vw, 400px);
  border-radius: 16px;
}

.hero-gallery .gallery-grid--row .photo img {
  object-fit: cover;
}

.photo .gallery-coming-soon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e9e3d8, #d8cfbd);
  color: #4f5d39;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-gallery .gallery-grid--row .photo figcaption {
  padding: 0.85rem 1rem;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  line-height: 1.25;
  text-align: left;
  letter-spacing: 0.03em;
}

.photo-gallery-trigger {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(79, 93, 57, 0.15);
  user-select: none;
}

.photo-gallery-trigger img {
  pointer-events: none;
}

.photo-gallery-trigger.is-active {
  outline: 2px solid #4f5d39;
  outline-offset: 3px;
}

.cerimonia-gallery-panel {
  position: relative;
  margin-top: clamp(0.85rem, 2vw, 1.25rem);
  padding-top: clamp(0.65rem, 1.5vw, 0.9rem);
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
}

.cerimonia-gallery-panel[hidden] {
  display: none !important;
}

.cerimonia-gallery-panel:not([hidden]) {
  display: block;
}

.cerimonia-gallery-panel-close {
  position: absolute;
  top: 0.35rem;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(79, 93, 57, 0.12);
  color: #4f5d39;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cerimonia-gallery-panel-close:hover,
.cerimonia-gallery-panel-close:focus-visible {
  background: rgba(79, 93, 57, 0.2);
  transform: scale(1.04);
}

.cerimonia-gallery-panel-title {
  margin: 0 0 0.65rem;
  padding-right: 2.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f5d39;
  line-height: 1.35;
}

.gallery-grid--deck-expanded {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #4f5d39 rgba(79, 93, 57, 0.15);
}

.gallery-grid--deck-expanded::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid--deck-expanded::-webkit-scrollbar-track {
  background: rgba(79, 93, 57, 0.1);
  border-radius: 99px;
}

.gallery-grid--deck-expanded::-webkit-scrollbar-thumb {
  background: #4f5d39;
  border-radius: 99px;
}

.gallery-grid--deck-expanded .photo {
  flex: 0 0 auto;
  width: clamp(9.5rem, 18vw, 13.75rem);
  height: clamp(12rem, 22vw, 17.5rem);
  min-height: 0;
  aspect-ratio: auto;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.gallery-grid--deck-expanded .photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.gallery-grid--deck-expanded .photo:hover img {
  transform: none;
}

.gallery-scroll-hint {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.cerimonia-gallery-panel-copy {
  margin-top: clamp(0.85rem, 2vw, 1.15rem);
  max-width: 42rem;
  width: 100%;
  margin-inline: 0;
}

.cerimonia-gallery-panel-copy p {
  margin: 0 0 0.65rem;
  color: #4c4640;
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  line-height: 1.6;
  text-align: left;
}

.cerimonia-gallery-panel-copy p:last-child {
  margin-bottom: 0;
}

.cerimonia-gallery-panel-copy strong {
  color: #4f5d39;
  font-weight: 600;
}

.section .container,
.eventos-info-hub .container {
  width: min(var(--page-max), calc(100% - var(--page-gutter) * 2));
}

.section-intro,
.hero-gallery-head p,
.cerimonia-gallery-panel-copy p,
#espaco p {
  max-width: 42rem;
}

@media (min-width: 981px) {
  .cerimonia-gallery-bar {
    padding: clamp(1.25rem, 2vw, 1.75rem) 0 clamp(1.5rem, 2.5vw, 2.25rem);
  }

  .hero-gallery .gallery-grid--row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .hero-gallery .gallery-grid--row .photo {
    min-height: clamp(300px, 28vw, 420px);
    aspect-ratio: 3 / 4;
  }

  .gallery-grid--deck-expanded .photo {
    width: 13.75rem;
    height: 17.25rem;
  }
}

@media (max-width: 1100px) {
  .estrutura-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-gallery .gallery-grid--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-gallery .gallery-grid--row .photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 11.5rem;
    border-radius: 12px;
  }

  .hero-gallery .gallery-grid--row .photo figcaption {
    padding: 0.48rem 0.55rem;
    font-size: clamp(0.66rem, 2.6vw, 0.76rem);
  }

  .gallery-grid--deck-expanded .photo {
    width: min(9.25rem, 38vw);
    height: min(11.5rem, 48vw);
  }
}

@media (max-width: 640px) {
  .hero-gallery .gallery-grid--row .photo {
    max-height: 10.5rem;
  }

  #espaco .estrutura-gallery-grid .photo,
  .eventos-gallery-section .estrutura-gallery-grid .photo {
    aspect-ratio: 3 / 4;
    min-height: 7.5rem;
  }

  #espaco .estrutura-gallery-grid .photo > img,
  .eventos-gallery-section .estrutura-gallery-grid .photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 400px) {
  .hero-gallery .gallery-grid--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-gallery .gallery-grid--row .photo {
    max-height: 9.5rem;
  }

  .gallery-grid--deck-expanded .photo {
    width: min(8.5rem, 42vw);
    height: min(10.5rem, 52vw);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  transform: scale(1.15);
  transform-origin: left center;
}

.hero-signature,
.hero-trust,
.hero-card,
.hero-grain,
.overlay {
  display: none;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
    transform: scale(1);
  }

  .hero {
    background: #4f5d39;
    padding: 0;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero-copy {
    order: 1;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(1.2rem, 3.5vw, 1.6rem) clamp(4vw, 5vw, 6vw) clamp(1.15rem, 2.8vw, 1.4rem);
    background: #4f5d39;
    text-align: left;
    flex-shrink: 0;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(24px, 4.5vw, 36px);
    background: linear-gradient(to bottom, #4f5d39, rgba(79, 93, 57, 0));
    transform: translateY(100%);
    pointer-events: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 0 0 0.6rem;
    color: #f8f5ee;
    font-size: clamp(1.55rem, 4.2vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .hero-copy p {
    max-width: 100%;
    margin: 0;
    color: #f2eee4;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    line-height: 1.45;
  }

  .hero-media {
    order: 2;
    width: 100%;
    min-height: clamp(260px, 42dvh, 480px);
    margin-top: clamp(-18px, -3vw, -26px);
    border-radius: 0;
    flex: 0 0 auto;
  }

  .hero-fade {
    background: linear-gradient(
      to bottom,
      #4f5d39 0%,
      rgba(79, 93, 57, 0.45) 6%,
      rgba(79, 93, 57, 0.16) 14%,
      transparent 24%
    );
  }

  .hero-arrow {
    width: 48px;
    height: 72px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 4rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-gallery-head {
    padding: clamp(1.4rem, 4vw, 2rem) 0 clamp(0.85rem, 2vw, 1.1rem);
  }

  .gallery-page-top {
    background: #faf8f5;
  }

  .gallery-page .hero-gallery-head {
    padding: clamp(1.4rem, 4vw, 2rem) 0 clamp(0.85rem, 2vw, 1.1rem);
  }

  .hero-gallery-media {
    min-height: clamp(320px, 52dvh, 560px);
  }

  .cerimonia-gallery-bar {
    margin-top: 0;
    padding: 0.75rem 0 1rem;
  }

  .hero-gallery .gallery-grid--row .photo figcaption {
    padding: 0.5rem 0.55rem;
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  }

  .cerimonia-gallery-panel {
    margin-top: 1rem;
    padding-top: 0.85rem;
  }

  .cerimonia-gallery-panel-copy p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  body {
    background: #faf8f5;
  }

  .top-strip-content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.3rem 0;
    text-align: center;
  }

  .top-strip {
    display: none;
  }

  .header {
    background: rgba(250, 248, 245, 0.96);
    border-bottom: none;
    z-index: 210;
  }

  .header.scrolled {
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(10px);
  }

  .nav-wrap {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .nav-mobile-bar {
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .nav-brand-group .brand {
    flex-shrink: 0;
  }

  .nav-mobile-home {
    flex-shrink: 0;
    font-size: 0.8rem;
  }

  .hero {
    background: #faf8f5;
    padding: 0;
    overflow: visible;
  }

  .hero-layout {
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 0;
    min-height: auto;
  }

  .hero-layout.container {
    width: 100%;
    max-width: none;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 4vw, 1.35rem) 5vw clamp(1.2rem, 3.2vw, 1.45rem);
    background: #faf8f5;
    color: var(--text);
    flex-shrink: 0;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(22px, 4vw, 32px);
    background: linear-gradient(to bottom, #faf8f5, rgba(250, 248, 245, 0));
    transform: translateY(100%);
    pointer-events: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin: 0 0 0.55rem;
    color: var(--text);
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .hero-copy p {
    max-width: 100%;
    color: #4c4640;
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.45;
    font-weight: 500;
  }

  .hero-media {
    order: 2;
    min-height: clamp(250px, 42dvh, 470px);
    max-height: none;
    width: 100%;
    margin-top: clamp(-16px, -2.8vw, -24px);
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide-focus-middle {
    background-position: center 42%;
  }

  .hero-slide-focus-noivos {
    background-position: center 52%;
  }

  .hero-slide-focus-girl {
    background-position: center;
  }

  .hero-slide-formatura {
    background-size: cover;
    background-position: center 22%;
  }

  .hero-slide-focus-ambiente {
    background-position: center 48%;
  }

  .hero-fade {
    background: linear-gradient(
      to bottom,
      #faf8f5 0%,
      rgba(250, 248, 245, 0.62) 5%,
      rgba(250, 248, 245, 0.22) 12%,
      transparent 22%
    );
  }

  .hero-arrow {
    width: 48px;
    height: 72px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 4rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-gallery {
    background: #faf8f5;
  }

  .gallery-page-top {
    background: #faf8f5;
  }

  .hero-gallery-head {
    padding: clamp(1.35rem, 5vw, 1.85rem) 0 clamp(0.85rem, 3vw, 1rem);
    background: transparent;
  }

  .gallery-page .hero-gallery-head {
    padding: clamp(1.35rem, 5vw, 1.85rem) 0 clamp(0.85rem, 3vw, 1rem);
  }

  .hero-gallery-head h1 {
    color: var(--text);
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    max-width: none;
  }

  .hero-gallery-head p {
    color: #4c4640;
    max-width: none;
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
    line-height: 1.55;
  }

  .hero-gallery-media {
    min-height: clamp(340px, 62dvh, 620px);
  }

  .cerimonia-gallery-bar {
    background: #faf8f5;
    margin-top: 0;
    padding: 0.85rem 0 1.25rem;
  }

  .gallery-page:has(.cerimonia-gallery-panel:not([hidden])) .gallery-grid--row {
    position: sticky;
    top: calc(58px + env(safe-area-inset-top, 0px));
    z-index: 6;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    background: #faf8f5;
    padding-block: 0.35rem 0.65rem;
    margin-bottom: 0.15rem;
    box-shadow: 0 8px 18px rgba(36, 33, 30, 0.06);
  }

  .hero-gallery:has(.cerimonia-gallery-bar) .hero-gallery-head {
    padding-bottom: 0.85rem;
  }

  .hero-gallery .gallery-grid--row .photo figcaption {
    font-size: clamp(0.66rem, 2.6vw, 0.76rem);
    padding: 0.48rem 0.52rem;
  }

  .cerimonia-gallery-panel-title {
    font-size: 0.72rem;
    padding-right: 2.5rem;
  }

  .cerimonia-gallery-panel-close {
    top: 0.15rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .cerimonia-gallery-panel-copy {
    max-width: none;
  }

  .cerimonia-gallery-panel-copy p {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    transform: scale(1);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    z-index: 30;
  }

  .whatsapp-float.is-pulsing {
    animation: whatsapp-mobile-pulse 1.7s ease-in-out infinite;
  }

  .whatsapp-float-icon {
    width: 4.2rem;
    max-width: 18vw;
  }

  .localizacao-contato,
  .buffet-section {
    padding: 1rem;
  }

  .photo-modal {
    padding: 0.75rem;
  }

  .photo-modal-img {
    max-width: 100%;
    max-height: 86vh;
    border-radius: 10px;
  }

  .photo-modal-arrow {
    width: 56px;
    height: 72px;
    font-size: 3.2rem;
    background: rgba(255, 255, 255, 0.22);
  }

  .photo-modal-prev {
    left: 6px;
  }

  .photo-modal-next {
    right: 6px;
  }

  .photo-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .photo-modal-counter {
    bottom: 14px;
    font-size: 0.78rem;
  }

  .cerimonia-gallery-panel-close {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .parceiro-card--placeholder {
    min-height: 170px;
  }

  #espaco.section,
  .eventos-gallery-section.section {
    padding: 2.4rem 0;
  }

  #espaco .split {
    gap: 0.9rem;
  }

  #espaco h2,
  .eventos-gallery-section h1 {
    font-size: clamp(1.1rem, 4.8vw, 1.4rem);
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }

  #espaco p,
  .eventos-gallery-section > .container > div > p {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.5;
    margin-bottom: 0.55rem;
  }

  #espaco .estrutura-gallery-grid,
  .eventos-gallery-section .estrutura-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
  }

  #espaco .estrutura-gallery-grid .photo,
  .eventos-gallery-section .estrutura-gallery-grid .photo {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 7.5rem;
  }

  #espaco .estrutura-gallery-grid .photo > img,
  .eventos-gallery-section .estrutura-gallery-grid .photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  #espaco .photo figcaption,
  .eventos-gallery-section .photo figcaption {
    padding: 0.4rem 0.5rem;
    font-size: clamp(0.7rem, 2.8vw, 0.78rem);
    font-weight: 600;
    line-height: 1.25;
  }

  #diferenciais h2,
  #pacotes h2,
  .buffet-header h2 {
    font-size: clamp(1.15rem, 4.6vw, 1.4rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #diferenciais .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  #diferenciais .card {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  #diferenciais .card h3 {
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
    margin-bottom: 0.35rem;
    line-height: 1.25;
  }

  #diferenciais .card p {
    font-size: clamp(0.78rem, 3vw, 0.88rem);
    line-height: 1.4;
  }

  .estrutura-block {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
  }

  .estrutura-title {
    font-size: clamp(0.98rem, 4vw, 1.18rem);
    margin-bottom: 0.5rem;
  }

  .estrutura-intro {
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 0.75rem;
  }

  .estrutura-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .estrutura-group-title {
    font-size: 0.66rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
  }

  .estrutura-grid {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .estrutura-grid li {
    padding: 0.5rem 0.55rem;
    border-radius: 7px;
    font-size: clamp(0.78rem, 3vw, 0.88rem);
    line-height: 1.35;
  }

  #pacotes .section-intro {
    font-size: 0.82rem;
    line-height: 1.42;
    margin-bottom: 0.85rem;
  }

  #pacotes .pricing-cards {
    gap: 0.55rem;
  }

  #pacotes .pricing-card {
    padding: 0.72rem 0.75rem;
    border-radius: 10px;
  }

  #pacotes .pricing-card.featured {
    transform: none;
  }

  #pacotes .pricing-card .tag {
    font-size: 0.62rem;
    margin-bottom: 0.35rem;
  }

  #pacotes .pricing-card h3 {
    font-size: 0.84rem;
    margin-bottom: 0.3rem;
  }

  #pacotes .pricing-card p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  #pacotes .feature-list li {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
    padding-left: 1rem;
  }

  #pacotes .feature-list li::before {
    width: 6px;
    height: 6px;
    top: 0.45rem;
  }

  #pacotes .pricing-card .btn {
    margin-top: 0.55rem;
    padding: 0.52rem 0.7rem;
    font-size: 0.74rem;
    max-width: none;
    width: 100%;
  }

  .buffet-section {
    margin-top: 1.35rem;
    padding: 0.85rem;
    border-radius: 12px;
  }

  .buffet-header {
    margin-bottom: 0.85rem;
  }

  .buffet-eyebrow {
    font-size: 0.62rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.35rem;
  }

  .buffet-lead {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-top: 0.35rem;
  }

  .buffet-included {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .buffet-included-card {
    padding: 0.55rem 0.6rem;
    border-radius: 9px;
  }

  .buffet-included-title {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
  }

  .buffet-pill-list {
    gap: 0.28rem;
  }

  .buffet-pill-list li {
    padding: 0.28rem 0.5rem;
    font-size: clamp(0.75rem, 3vw, 0.85rem);
  }

  .buffet-options {
    gap: 0.55rem;
    margin-bottom: 0.75rem;
  }

  .buffet-option {
    padding: 0.7rem 0.72rem;
    border-radius: 10px;
  }

  .buffet-option:hover {
    transform: none;
  }

  .buffet-option-badge {
    font-size: 0.6rem;
    margin-bottom: 0.3rem;
  }

  .buffet-option-head h3 {
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
  }

  .buffet-option-head p {
    font-size: 0.72rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
  }

  .buffet-menu-groups {
    gap: 0.45rem;
  }

  .buffet-menu-group h4 {
    font-size: 0.64rem;
    margin-bottom: 0.32rem;
  }

  .buffet-dish-list {
    gap: 0.22rem;
  }

  .buffet-dish-list li {
    font-size: clamp(0.78rem, 3vw, 0.88rem);
    padding-left: 0.85rem;
  }

  .buffet-dish-list li::before {
    width: 4px;
    height: 4px;
    top: 0.42rem;
  }

  .buffet-note {
    font-size: 0.72rem;
    margin-bottom: 0.65rem;
  }
}
