:root {
  --white: #EFE6DA;
  --primary: #1E3932;
  --secondary: #855235;
  --terceary: #C9A45C;
  --text: #2e2c2c;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

p {
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* =========================
   PAGE LOADER
========================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   NAVBAR
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: .4s ease, box-shadow .4s ease;
  z-index: 1000;
}

nav.scrolled {
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.menu a {
  text-decoration: none;
  color: var(--white);
  font-weight: 300;
  transition: color .3s ease;
}

.menu a:hover {
  color: var(--secondary);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* =========================
   HEADER
========================= */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 1;

}

.hero-content h1,
.hero-content h2 {
  font-family: 'Julius Sans One', serif;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  margin-bottom: 0.1rem !important;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
}

.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  margin-top: 1rem;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* =========================
   SECTIONS
========================= */
section {
  scroll-margin-top: 100px;
}

section:not(.hero-slide) {
  padding: 4rem 8%;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

h2:not(.history-header .gastronomia-text) {
  text-align: center;
}

/* =========================
   SOBRE
========================= */
#sobre {
  background: url(assets/background/sobre.png);
  background-size: cover;
  background-position: center;
}

.history {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.history-header h2 {
  text-align: left !important;
  font-size: 3rem;
  font-weight: 600;
}

.history-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  text-align: justify;
  max-width: 50%;
  flex: 0 0 100%;
}

.history-content strong {
  font-weight: 550;
  color: var(--primary);
}

/* =========================
   COUNTERS
========================= */
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
  align-items: center;
  padding-top: 2rem;
}

.counter {
  font-size: 3rem;
  color: var(--primary);
}

.plus {
  font-size: 2rem;
  color: var(--primary);
}

/* =========================
   REVIEWS
========================= */

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.reviews-wrapper {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 40px 0px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 57, 50, 0.9);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(30, 57, 50, 1);
  transform: translateY(-50%) scale(1.1);
  transition: .3s ease, transform .3s ease;
}

.carousel-arrow.prev {
  left: -60px;
}

.carousel-arrow.next {
  right: -60px;
}

.review-card {
  display: flex;
  flex: 0 0 350px;
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem;
  scroll-snap-align: start;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author strong {
  font-weight: 500;
}

.review-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

.review-plat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.plataforma {
  background-color: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 2px 8px;
  width: fit-content;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.plataforma.google {
  background: #1e3932;
}

.plataforma.airbnb {
  background: #ff5a5f;
}

.plataforma.booking {
  background: #003580;
}

.plataforma.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.review-card::before {
  content: "★ ★ ★ ★ ★";
  color: var(--terceary);
  margin-bottom: 1rem;
  font-size: 1rem;
}


/* =========================
   SERVICES
========================= */
#servicos {
  position: relative;
  background-color: (var(--white));
  overflow: hidden;
}

#servicos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/background/sombra-3.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.50;
  z-index: -1;
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 50px 0px 50px 0px;
  border: 3px solid var(--primary);
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  border: 3px solid var(--secondary);
}

.service-image {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  font-family: 'Julius Sans One', sans-serif;
  color: var(--white);
}


.service-content p {
  font-size: .95rem;
  line-height: 1.5;
  opacity: .9;
}

/* =========================
   GALLERY
========================= */
#espaco {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

#espaco::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/background/sombra-1.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: 0.50;
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid::after {
  content: "";
  flex: 0 0 20px;
  scroll-snap-align: start;
}

.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-button {
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.gallery-button:hover {
  background: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  transition: transform .3s ease, box-shadow .3s ease;  
}

.gallery-item {
  position: relative;
  flex: 0 0 80%;
  aspect-ratio: 3 / 4;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.gallery-item:hover {
  cursor: pointer;
  border: 3px solid var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  transition: transform .3s ease, box-shadow .3s ease;  
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-cta {
  border: 2px solid var(--primary);
  display: none;
}

.gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 57, 50, 0.65);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-cta-overlay span {
  color: var(--white);
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.4rem;
}

.gallery-cta:hover img {
  transform: scale(1.05);
  filter: blur(2px);
}


/* =========================
   CONTACT
========================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: .9rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform .4s ease, filter .4s ease;
}

.contact-form button:hover {
  background: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  transition: transform .4s ease, filter .4s ease;
}

/* =========================
   LINKS EXTERNOS / HUB
========================= */
#links-externos {
  text-align: center;
  padding: 4rem 8%;
}

#links-externos h3 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2rem;
  margin-bottom: .5rem;
}

.links-sub {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: .95rem;
}

.external-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.ext-btn {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.4rem;
  border-radius: 30px;
  color: var(--white);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.ext-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  cursor: pointer;
}

.ext-btn .icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.airbnb {
  background: #FF5A5F;
}

.booking {
  background: #003580;
}

.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.whatsapp {
  background: #25D366;
}

.form-link {
  background-color: var(--primary);
  color: var(--white);
  grid-column: 1 / -1;
  justify-content: center;
}

.mobile-text {
  display: none;
}

/* =========================
   CALENDAR
========================= */
.calendar-wrapper {
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.calendar-wrapper h2 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2.4rem;
  margin-bottom: .5rem;
}

#calendar {
  max-width: 800px;
  max-height: 600px;
}

.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid var(--white);
}

.fc {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

.fc-toolbar-title {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.fc-button {
  background: transparent !important;
  border: 1px solid #ddd !important;
  color: var(--primary) !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  transition: all 0.2s ease;
}

.fc-button:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.fc-event {
  border: none !important;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.calendar-footer a {
  width: 8rem;
  margin-top: 1.5rem;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 1rem;
  text-align: center;
  font-size: .8rem;
  background: var(--primary);
  color: var(--white);
}

footer a {
  text-decoration: none;
  color: #bf7449;
  font-weight: 500;
}

/* =========================
   MODAL (GLOBAL)
========================= */

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 99999;
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.modal-content {
  position: relative;
  background: var(--primary);
  color: var(--white);
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 30px;
  padding: 3rem;
  z-index: 2;
}

.modal-content h2 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: left !important;
}

.modal-top {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.modal-image {
  width: 300px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: .9;
  text-align: justify;
}

.modal-incluso {
  background: var(--primary);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  border: 1px solid var(--white);

  display: grid;
  gap: 1.5rem;
}

.incluso-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: .4rem 1.2rem;
  font-size: .7rem;
  letter-spacing: 1px;
  border-radius: 50px;
}

.incluso-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3rem;
  justify-content: center;
}

.incluso-content {
  text-align: left;
  font-size: small;
}

.incluso-content span {
  font-weight: 400;
  font-style: italic;
  opacity: 0.8;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 3;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 20px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

.modal-content {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
}

/* =========================
   GASTRONOMIA
========================= */

.gastronomia-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pacotes-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  border: 1px solid var(--white);
}

.pacotes-card.destaque {
  transform: translateY(-15px);
  border: 3px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: .4rem 1.2rem;
  font-size: .7rem;
  letter-spacing: 1px;
  border-radius: 50px;
}

.pacotes-card h3 {
  margin-top: 1.5rem;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.4rem;
}

.pacotes-card .preco {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pacotes-card small {
  font-size: .75rem;
  opacity: .7;
}

.pacotes-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pacotes-card ul li {
  margin-bottom: .6rem;
  font-size: .9rem;
  opacity: .85;
}

.gastronomia-chef {
  display: grid;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

/* =========================
   CHEF SECTION
========================= */
.chef-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.chef {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.chef-profile {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chef-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-info strong {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .5px;
}

.chef-info span {
  font-size: .9rem;
  color: var(--text);
}

.chef-info small {
  font-size: .75rem;
  color: #777;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.chef-text {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
}

.gastronomia-chef h3 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2rem;
  color: var(--white);
}

.chef-image {
  width: 200px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.whatsapp-float i {
  color: #fff;
  font-size: 28px;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .4s;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox .close {
  top: 30px;
  right: 40px;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  nav {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 64px;
    right: 5px;
    width: 40%;
    background: rgba(24, 56, 46, 0.98);
    display: none;
    flex-direction: column;
    border-radius: 0 0 20px 20px;
    gap: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 14px 10px;
  }

  section:not(.hero-slide) {
    padding: 4rem 6%;
  }

  .hero-carousel {
    min-height: 85vh;
  }

  .hero-track>div {
    padding: 0 20px;
  }

  .hero-content {
    bottom: 6%;
    padding: 0 1rem;
    width: 100%;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.8rem;
    margin: 0 auto;
  }

  .hero-dots {
    bottom: 20px;
    padding: 6px 12px;
    gap: 10px;
    margin-top: 1rem;
  }

  .hero-dots .dot {
    width: 8px;
    height: 8px;
  }

  .history {
    flex-direction: column;
  }

  .history-header h2 {
    text-align: center;
    font-size: 2.4rem;
  }

  .history-content {
    max-width: 100%;
  }

  .counters {
    grid-template-columns: 1fr;
  }


.reviews-carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  }

  .reviews-carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .reviews-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .reviews-wrapper::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .review-plat {
    gap: 10px;
  }

  .services {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 1.2rem;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    flex: 0 0 85%;
    flex-direction: column;
    padding: 1.2rem;
    scroll-snap-align: center;
    border-radius: 30px 0 30px 0;

  }

  .service-card::after {
    content: "Ver detalhes";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 500;
  }

  .service-image {
    width: 100%;
    height: 180px;
    border-radius: 20px 0 20px 0;
  }

  .service-content {
    padding-top: 1rem;
    text-align: center;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }

  .service-content p {
    font-size: .95rem;
    line-height: 1.4;
  }

  .services::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .gallery-button {
    display: none;
  }

  .gallery-cta {
    display: flex;
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .gallery-cta {
    scroll-snap-align: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .external-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .modal-content {
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    margin: 5vh auto;
    padding: 1.2rem;
  }

  .modal-top {
    flex-direction: column;
  }

  .modal-image {
    width: 100%;
    height: 160px;
  }

  .incluso-card.destaque {
    transform: none;
  }

  .incluso-grid {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .gastronomia-cards {
    grid-template-columns: 1fr;
  }

  .pacotes-card.destaque {
    transform: none;
  }

  .incluso-card.destaque {
    transform: none;
  }

  .chef-text {
    grid-template-columns: 1fr;
  }

  .chef-image {
    width: 100%;
    height: 180px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 15px;
    right: 15px;  
  }

}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 300px;
  }

}