/* ==========================================================================
   Lazer Terra Verde - Estilos Globais Unificados & Micro-interações
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variáveis & Reset Base
   -------------------------------------------------------------------------- */
:root {
  --green: #145f48;
  --deep: #0c547c;
  --cream: #f4ede2;
  --sand: #e7ddcd;
  --lime: #a8ce2d;
  --lime-bright: #c2ea38;
  --font: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', serif;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--font);
}

/* --------------------------------------------------------------------------
   2. Cabeçalho & Navegação
   -------------------------------------------------------------------------- */
.topbar {
  height: 94px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 6.4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .3px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--lime);
  transition: width 0.3s var(--ease-spring);
}

.nav > a:hover {
  color: #fff;
}

.nav > a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid #ffffff75;
  padding: 13px 16px !important;
  border-radius: 2px;
  transition: all 0.3s var(--ease-spring);
}

.nav-cta span {
  font-size: 16px;
  margin-left: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.3s var(--ease-spring);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-button {
  display: none;
}

/* --------------------------------------------------------------------------
   3. Tipografia & Elementos Reutilizáveis
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #48745f;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  display: inline-block;
  width: 27px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}

.eyebrow.light {
  color: #e7eecb;
}

.eyebrow.center {
  justify-content: center;
}

.hero h1,
.intro h2,
.features h2,
.occasion h2,
.booking h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 77px);
  font-weight: 600;
  letter-spacing: -2.8px;
  line-height: 1.04;
  margin: 0;
}

.hero h1 em,
.intro h2 em,
.features h2 em,
.occasion h2 em,
.booking h2 em {
  color: var(--lime);
  font-weight: 600;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-decoration: none;
  color: var(--green);
  background: var(--lime);
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  border-radius: 2px;
  transition: all 0.25s var(--ease-spring);
}

.primary-button:hover {
  background: #c1dc55;
  transform: translateY(-2px);
}

.primary-button:active {
  transform: translateY(-1px) scale(0.98);
}

.primary-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.25s var(--ease-spring);
}

.primary-button:hover span {
  transform: translateY(3px);
}

.primary-button.dark {
  background: var(--green);
  color: #fff;
  margin-top: 5px;
  box-shadow: 0 4px 14px rgba(20, 95, 72, 0.25);
}

.primary-button.dark:hover {
  background: #0e4937;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 95, 72, 0.4);
}

.primary-button.dark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.25s var(--ease-spring);
}

.primary-button.dark:hover span {
  transform: translate(3px, -3px);
}

.text-link {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid #a8c4b0;
  padding-bottom: 9px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.text-link span {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.25s var(--ease-spring);
}

.text-link:hover {
  color: #0b3d2e;
  border-color: var(--green);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  height: min(780px, 100vh);
  min-height: 650px;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('assets/terra-verde.webp') center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 57, 51, .82), rgba(8, 57, 51, .22) 64%, rgba(5, 20, 18, .34)),
    linear-gradient(0deg, rgba(6, 23, 21, .35), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(130px, 17vh, 175px) 0 0 11vw;
  width: auto;
  max-width: none;
}

.hero h1 {
  font-size: clamp(46px, 4.4vw, 68px);
  max-width: none;
}

.hero h1 .hero-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  max-width: 385px;
  margin: 28px 0;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 10.75vw;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.hero-scroll span {
  width: 45px;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.hero-scroll:hover span {
  width: 55px;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 6.4vw;
  bottom: 34px;
  background: var(--cream);
  color: var(--green);
  width: 285px;
  padding: 21px 24px 22px;
  border-top: 4px solid var(--lime);
  box-shadow: 0 14px 35px rgba(1, 28, 25, .25);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(1, 28, 25, .35);
}

.hero-card span {
  color: var(--deep);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.hero-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  margin: 9px 0 0;
}

/* --------------------------------------------------------------------------
   5. Introdução (.intro)
   -------------------------------------------------------------------------- */
.intro {
  padding: 128px 11vw;
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 11vw;
  align-items: end;
}

.intro h2 {
  font-size: clamp(42px, 4.6vw, 68px);
}

.intro-text p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 28px;
  color: #385d51;
}

/* --------------------------------------------------------------------------
   6. Galeria de Fotos (.photo-strip)
   -------------------------------------------------------------------------- */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 13px;
  padding: 0 6.4vw 108px;
}

.photo-strip figure {
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.photo-strip .photo-tall {
  height: 370px;
  margin-top: -38px;
}

.photo-strip figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.photo-strip figure:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   7. Benefícios & Estrutura (.features)
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 630px;
}

.feature-image {
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.features:hover .feature-image img {
  transform: scale(1.03);
}

.feature-content {
  background: var(--green);
  color: #fff;
  padding: 92px 8vw;
}

.features h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  margin-bottom: 43px;
}

.feature-list {
  border-top: 1px solid #ffffff38;
}

.feature-list > div {
  display: flex;
  gap: 21px;
  padding: 17px 12px;
  border-bottom: 1px solid #ffffff38;
  font-size: 13px;
  line-height: 1.45;
  border-radius: 4px;
  transition: transform 0.25s var(--ease-spring), background-color 0.25s ease;
}

.feature-list > div:hover {
  transform: translateX(8px);
  background-color: rgba(255, 255, 255, 0.05);
}

.feature-list b {
  color: var(--lime);
  font-family: var(--serif);
  font-weight: 500;
  transition: transform 0.25s var(--ease-spring);
}

.feature-list > div:hover b {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   8. Ocasiões (.occasion)
   -------------------------------------------------------------------------- */
.occasion {
  text-align: center;
  padding: 122px 8vw 113px;
}

.occasion h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  margin: 65px auto 0;
  max-width: 1050px;
}

.occasion article {
  padding: 18px 35px 22px 27px;
  border-left: 1px solid #c7d4c7;
  border-radius: 4px;
  transition: transform 0.35s var(--ease-spring), background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.occasion article:first-child {
  border-left: none;
}

.occasion article:hover {
  transform: translateY(-6px);
  background-color: rgba(20, 95, 72, 0.04);
  box-shadow: 0 10px 24px rgba(20, 95, 72, 0.06);
}

.number {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--deep);
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s var(--ease-spring);
}

.occasion article:hover .number {
  color: var(--lime);
  transform: scale(1.15);
}

h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  margin: 28px 0 12px;
  transition: color 0.3s ease;
}

.occasion article:hover h3 {
  color: #0b3d2e;
}

article p {
  color: #506c5e;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Memórias & Carrossel de Eventos (.memories)
   -------------------------------------------------------------------------- */
.memories {
  background: var(--green);
  color: var(--cream);
  padding: 110px 0 96px 11vw;
  overflow: hidden;
}

.memories-head {
  padding-right: 9vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.memories .eyebrow {
  color: #dce6ba;
}

.memories h2 {
  font: 600 clamp(42px, 4.7vw, 68px)/1.04 var(--serif);
  letter-spacing: -2px;
  margin: 0;
}

.memories h2 em {
  color: var(--lime);
}

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

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 237, 226, 0.35);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-spring);
}

.carousel-button svg {
  display: block;
  transition: transform 0.25s var(--ease-spring);
}

.carousel-button:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green);
  transform: translateY(-2px);
}

.carousel-button.previous:hover svg {
  transform: translateX(-2px);
}

.carousel-button.next:hover svg {
  transform: translateX(2px);
}

.carousel-button:active {
  transform: translateY(0) scale(0.92);
}

.event-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 9vw 24px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}

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

.event-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.event-slide {
  flex: 0 0 min(31vw, 365px);
  scroll-snap-align: start;
  margin: 0;
  cursor: pointer;
}

.event-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.13;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.event-slide:hover img {
  filter: brightness(1.12);
}

.event-slide p {
  margin: 16px 0 0;
  font: 600 13px var(--font);
  letter-spacing: .3px;
  color: #e8e3d9;
  transition: color 0.3s ease, transform 0.3s var(--ease-spring);
}

.event-slide:hover p {
  color: var(--lime);
  transform: translateX(4px);
}

/* Link Veja Mais no Instagram */
.instagram-link {
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding: 8px 18px 8px 0;
  text-decoration: none;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  position: relative;
  transition: all 0.3s var(--ease-spring);
}

.instagram-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), #d6f264);
  transition: height 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  opacity: 0.65;
}

.instagram-link span {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.3s var(--ease-spring);
}

.instagram-link:hover {
  color: #e2fb72;
  text-shadow: 0 0 16px rgba(168, 206, 45, 0.45);
}

.instagram-link:hover::after {
  height: 2px;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(168, 206, 45, 0.5);
}

.instagram-link:hover span {
  transform: translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   10. Reserva (.booking)
   -------------------------------------------------------------------------- */
.booking {
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.booking-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.booking-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/terra-verde.webp') center/cover no-repeat;
  transform: scale(1);
  transition: transform 0.8s var(--ease-smooth), filter 0.6s ease;
}

.booking:hover .booking-image::before {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.booking-panel {
  background: #dce6ba;
  padding: 88px 9vw 60px;
}

.booking-panel h2 {
  font-size: clamp(41px, 4.5vw, 65px);
}

.booking-panel > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.65;
  color: #49695a;
  max-width: 405px;
  margin: 25px 0;
}

.booking small {
  display: block;
  font-size: 10px;
  margin-top: 14px;
  color: #52705e;
}

/* Card de Localização na Reserva */
.booking-location {
  margin-top: 36px;
  padding: 20px 22px;
  background: rgba(20, 95, 72, 0.08);
  border: 1px solid rgba(20, 95, 72, 0.16);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 440px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.booking-location:hover {
  background: rgba(20, 95, 72, 0.12);
  border-color: rgba(20, 95, 72, 0.28);
}

.booking-location-icon {
  color: #0b3d2e;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-location-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-location-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0b3d2e;
  text-transform: uppercase;
}

.booking-location-address {
  font-size: 14px;
  font-weight: 500;
  color: #145f48;
  margin: 0 !important;
  line-height: 1.4;
}

.booking-location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0b3d2e;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.booking-location-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.25s var(--ease-spring);
}

.booking-location-link:hover {
  color: #145f48;
}

.booking-location-link:hover span {
  transform: translate(3px, -3px);
}

/* --------------------------------------------------------------------------
   11. Rodapé (footer)
   -------------------------------------------------------------------------- */
footer {
  background: #092c21;
  color: #f4ede2;
  padding: 70px 6.4vw 36px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 155px;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.footer-brand:hover img {
  transform: scale(1.03);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #b3c5bb;
  max-width: 320px;
  margin: 0;
  font-family: var(--font);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lime);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
  color: #e8e3d9;
  margin: 0 0 10px;
  font-family: var(--font);
}

.footer-map-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-map-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.25s var(--ease-spring);
}

.footer-map-action:hover {
  color: #e2fb72;
}

.footer-map-action:hover span {
  transform: translate(3px, -3px);
}

.footer-contact-link {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #e8e3d9;
  text-decoration: none;
  margin-bottom: 12px;
  font-family: var(--font);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link span {
  color: #9cb5a8;
  font-size: 12px;
  display: block;
}

.footer-contact-link:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244, 237, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #8fa89b;
  margin: 0;
  font-family: var(--font);
}

.back-to-top {
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease, transform 0.25s var(--ease-spring);
}

.back-to-top:hover {
  color: var(--lime);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   12. Animações Globais
   -------------------------------------------------------------------------- */
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* --------------------------------------------------------------------------
   13. Responsividade Mobile (max-width: 760px)
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  /* Oculta a barra de rolagem do navegador mantendo a rolagem ativa */
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }

  .topbar {
    height: 75px;
    padding: 15px 7vw;
  }

  .topbar .brand img,
  .brand img {
    width: 148px;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: flex;
    background: transparent;
    border: 0;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .menu-button i {
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-button.open + nav {
    display: flex;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 26px 7vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Hero Mobile */
  .hero {
    height: min(700px, 92vh);
    min-height: 580px;
  }

  .hero-copy {
    padding: 153px 8vw 0;
  }

  .hero h1 {
    font-size: 47px;
    letter-spacing: -2px;
  }

  .hero h1 .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-card {
    display: none;
  }

  .hero-scroll {
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    z-index: 2;
  }

  .hero-scroll span {
    width: auto;
    height: auto;
    background: transparent;
    display: inline-flex;
    align-items: center;
    animation: scrollBounce 2s ease-in-out infinite;
  }

  .hero-scroll span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    display: inline-block;
    margin-top: -3px;
  }

  /* Intro Mobile */
  .intro {
    padding: 82px 8vw;
    display: block;
  }

  .intro-text {
    margin-top: 40px;
  }

  /* Photo Strip Mobile (Carrossel Horizontal com Touch) */
  .photo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 8vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    padding: 0 8vw 60px;
    gap: 14px;
  }

  .photo-strip::-webkit-scrollbar {
    display: none;
  }

  .photo-strip figure,
  .photo-strip .photo-tall {
    flex: 0 0 78vw;
    height: 270px;
    margin-top: 0;
    scroll-snap-align: start;
    overflow: hidden;
  }

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

  /* Features Mobile */
  .features {
    display: block;
  }

  .feature-image {
    height: 340px;
  }

  .feature-content {
    padding: 66px 8vw;
  }

  /* Occasion Mobile */
  .occasion {
    padding: 82px 8vw;
  }

  .occasion-grid {
    display: block;
    margin-top: 45px;
  }

  .occasion article {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid #c7d4c7;
  }

  .occasion article:first-child {
    border-top: 0;
  }

  .occasion article h3 {
    margin: 13px 0 7px;
  }

  /* Memories Mobile */
  .memories {
    padding: 76px 0 68px 8vw;
  }

  .memories-head {
    padding-right: 8vw;
    align-items: start;
  }

  .memories h2 {
    font-size: 43px;
  }

  .carousel-actions {
    display: none;
  }

  .event-carousel {
    gap: 13px;
    padding-right: 8vw;
  }

  .event-slide {
    flex-basis: 76vw;
  }

  /* Booking Mobile */
  .booking {
    display: block;
  }

  .booking-image {
    height: 260px;
  }

  .booking-panel {
    padding: 65px 8vw;
  }

  .booking-location {
    max-width: 100%;
    margin-top: 30px;
    padding: 16px 18px;
  }

  /* Footer Mobile */
  footer {
    padding: 56px 8vw 32px;
    gap: 36px;
  }

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

  .footer-brand img {
    width: 140px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }
}