:root {
  --verde: #3aa39c;
  --verde-escuro: #2c7f79;
  --verde-claro: #eaf8f7;
  --branco: #ffffff;
  --cinza: #f7f9f9;
  --texto: #2b2b2b;
  --texto-suave: #666;
  --sombra: 0 12px 35px rgba(0, 0, 0, 0.08);
  --sombra-hover: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --transicao: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
  background: var(--branco);
  color: var(--texto);
  line-height: 1.6;
   overflow-x: hidden;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(58, 163, 156, 0.92);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.hero-logo {
width: 420px;
max-width: 90%;
height: auto;
display: block;
margin: 0 auto 25px;
filter: drop-shadow(0 8px 25px rgba(0,0,0,0.35));
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  height: 42px;
  width: auto;
}

.logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu a {
  color: white;
  margin-left: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: var(--transicao);
}

.menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: white;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: var(--transicao);
}

.menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.52)),
    url("quarto4/1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 850px;
  padding: 20px;
}


.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* BUTTONS */

.btn {
  background: var(--verde);
  padding: 14px 30px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transicao);
  box-shadow: 0 8px 20px rgba(58, 163, 156, 0.25);
}

.btn:hover {
  background: var(--verde-escuro);
  transform: translateY(-3px);
}

/* SECTION */

.section {
  padding: 90px 40px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 34px;
  color: var(--verde);
}

/* EXPERIENCE */

.experiencia {
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
  padding: 90px 30px;
}

.experiencia h2 {
  text-align: center;
  margin-bottom: 15px;
}

.top-text {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: var(--texto-suave);
}

.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.experiencia-card {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: var(--transicao);
}

.experiencia-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
}

.experiencia-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transicao);
}

.experiencia-card:hover img {
  transform: scale(1.04);
}

.experiencia-content {
  padding: 30px;
  text-align: center;
}

.experiencia-content h3 {
  margin-bottom: 15px;
  color: var(--verde);
  font-size: 24px;
}

.experiencia-content p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: var(--texto-suave);
}

/* SUITES */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
footer {
background: var(--verde);
color: white;
padding: 70px 40px 30px;
margin-top: 50px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
margin-bottom: 18px;
font-size: 22px;
}

.footer-col p {
font-size: 15px;
line-height: 1.7;
opacity: 0.95;
}

.footer-item,
.footer-link {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 14px;
text-decoration: none;
color: white;
font-size: 15px;
line-height: 1.5;
max-width: 260px;
}

.footer-link:hover {
opacity: 0.8;
}
.footer-item .material-symbols-outlined,
.footer-link .material-symbols-outlined {
font-size: 20px;
flex-shrink: 0;
margin-top: 2px;
}
.footer-item span:last-child,
.footer-link span:last-child {
display: block;
text-align: left;
}
.footer-copy {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.18);
font-size: 14px;
opacity: 0.9;
}
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicao);
}

.card-link:hover .card{
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
}

.card img {
  width: 100%;
    height: 320px;
  object-fit: cover;
  transition: var(--transicao);
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
}

.card-content h3 {
  margin-bottom: 12px;
  color: var(--verde);
  font-size: 22px;
}

.card-content p {
  font-size: 14px;
  color: var(--texto-suave);
  margin-top: 15px;
}
.card {
position: relative;
}
.suite-badge {
position: absolute;
top: 14px;
left: 14px;
z-index: 5;
display: flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.95);
color: #3aa39c;
padding: 8px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.suite-badge .material-symbols-outlined {
font-size: 18px;
}
/* GALLERY */

.gallery {
  columns: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  break-inside: avoid;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.16);
}
/* DIFERENCIAIS */

.diferenciais {
max-width: 1200px;
margin: -35px auto 70px;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 16px;
position: relative;
z-index: 20;
}

.diferencial-item {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(58,163,156,0.12);
border-radius: 18px;
padding: 20px 14px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 14px;
font-weight: 600;
color: #333;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: 0.3s ease;
text-align: center;
}

.diferencial-item:hover {
transform: translateY(-5px);
box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.diferencial-item .material-symbols-outlined {
font-size: 28px;
color: #3aa39c;
}
/* MAP */

.localizacao-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: var(--sombra);
padding: 0;
max-width: 1200px;
margin: 0 auto;
transition: var(--transicao);
}

.localizacao-card:hover {
transform: translateY(-6px);
box-shadow: var(--sombra-hover);
}

.map iframe {
width: 100%;
height: 420px;
border: none;
display: block;
}

.localizacao-conteudo {
padding: 28px 30px 34px;
}

.localizacao-lista {
text-align: left;
margin-bottom: 28px;
}

.localizacao-lista p {
font-size: 17px;
color: #444;
margin-bottom: 14px;
font-weight: 500;
}

.localizacao-btn {
text-align: center;
}

/* CONTACT */

.contato-box {
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: var(--sombra);
}

.contato-box h2 {
  color: white;
  margin-bottom: 20px;
}

.contato-box p {
  margin-bottom: 25px;
  font-size: 18px;
}


/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transicao);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}
.card-link {
text-decoration: none;
color: inherit;
display: block;
}
/* SOBRE */

.sobre {
padding: 80px 30px;
background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

.sobre-content {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 24px;
padding: 50px;
box-shadow: var(--sombra);
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.sobre-texto {
flex: 1;
}

.sobre-texto h2 {
font-size: 34px;
color: var(--verde);
margin-bottom: 20px;
}

.sobre-texto p {
font-size: 16px;
line-height: 1.8;
color: #555;
margin-bottom: 18px;
}

.beneficio-hospede {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(58,163,156,0.08);
border: 1px solid rgba(58,163,156,0.12);
padding: 16px 20px;
border-radius: 16px;
font-size: 15px;
font-weight: 600;
color: #2c7f79;
margin: 20px 0;
}

.beneficio-hospede .material-symbols-outlined {
font-size: 22px;
}

.sobre-badge {
width: 280px;
height: 280px;
border-radius: 50%;
background: linear-gradient(135deg, #3aa39c, #2c7f79);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 30px;
font-size: 18px;
font-weight: 600;
box-shadow: 0 20px 45px rgba(58,163,156,0.25);
}
/* COMPARATIVO RESERVA */
/* BENEFÍCIO EXTRA */

.beneficio-extra {
padding: 20px 30px 70px;
}

.beneficio-box {
max-width: 1200px;
margin: 0 auto;
background: linear-gradient(135deg, #3aa39c, #2c7f79);
border-radius: 24px;
padding: 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
color: white;
box-shadow: 0 20px 50px rgba(58,163,156,0.25);
}

.beneficio-icone {
width: 90px;
height: 90px;
border-radius: 50%;
background: rgba(255,255,255,0.15);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.beneficio-icone .material-symbols-outlined {
font-size: 46px;
color: white;
}

.beneficio-texto {
flex: 1;
}

.beneficio-texto h2 {
font-size: 30px;
margin-bottom: 12px;
}

.beneficio-texto p {
font-size: 16px;
line-height: 1.7;
opacity: 0.96;
}

.beneficio-btn {
background: white;
color: #2c7f79;
box-shadow: none;
}

.beneficio-btn:hover {
background: #f5f5f5;
color: #2c7f79;
}
.comparativo-reserva {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 900px;
margin: 0 auto 40px;
}

.comparativo-item {
background: white;
padding: 28px;
border-radius: 20px;
box-shadow: var(--sombra);
text-align: center;
border: 1px solid rgba(58,163,156,0.08);
transition: 0.3s ease;
}

.comparativo-item:hover {
transform: translateY(-5px);
box-shadow: var(--sombra-hover);
}

.comparativo-item .material-symbols-outlined {
font-size: 42px;
color: #3aa39c;
margin-bottom: 14px;
}

.comparativo-item h3 {
font-size: 22px;
color: var(--verde);
margin-bottom: 12px;
}

.comparativo-item p {
font-size: 15px;
color: #555;
line-height: 1.6;
}

.comparativo-item.destaque {
background: linear-gradient(135deg, #3aa39c, #2c7f79);
color: white;
}

.comparativo-item.destaque h3,
.comparativo-item.destaque p,
.comparativo-item.destaque .material-symbols-outlined {
color: white;
}
.sobre-badge .material-symbols-outlined {
font-size: 48px;
margin-bottom: 16px;
}
.card-link:hover .card {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
/* MOBILE */

@media (max-width: 768px) {



.close-whats {
font-size: 36px;
top: 8px;
right: 12px;
}

.whats-modal {
  padding: 15px;
}

.whats-box {
  width: 100%;
  max-width: 100%;
}
.whats-box h3 {
font-size: 24px;
margin-bottom: 20px;
}

.whats-option {
display: flex;
align-items: center;
gap: 12px;
}
.whats-option .material-symbols-outlined {
font-size: 22px;
color: var(--verde);
}
.beneficio-extra {
padding: 10px 14px 40px;
}
/* RESERVAS MOBILE */
.reservas-grid {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;
gap: 10px !important;
}

.reserva-card {
min-height: 160px !important;
padding: 12px !important;
}
.mobile-reserva {
display: flex;

position: fixed;
bottom: 0;
left: 0;

width: 100%;
height: 56px;

background: var(--verde);
color: white;

text-decoration: none;

align-items: center;
justify-content: center;
gap: 10px;

font-weight: 600;
z-index: 9998;
}
.beneficio-box {
flex-direction: column;
text-align: center;
padding: 24px 18px;
gap: 18px;
}

.beneficio-icone {
width: 70px;
height: 70px;
}

.beneficio-icone .material-symbols-outlined {
font-size: 34px;
}

.beneficio-texto h2 {
font-size: 22px;
}

.beneficio-texto p {
font-size: 14px;
}

.beneficio-btn {
width: 100%;
}


.suite-badge {
top: 10px;
left: 10px;
padding: 6px 10px;
font-size: 11px;
}
.comparativo-reserva {
grid-template-columns: 1fr;
gap: 14px;
margin-bottom: 28px;
}

.comparativo-item {
padding: 18px;
}

.comparativo-item h3 {
font-size: 18px;
}

.comparativo-item p {
font-size: 13px;
}
.sobre {
padding: 50px 14px;
}

.sobre-content {
flex-direction: column;
padding: 24px;
gap: 24px;
text-align: center;
}

.sobre-texto h2 {
font-size: 26px;
}

.sobre-texto p {
font-size: 14px;
}

.beneficio-hospede {
font-size: 13px;
padding: 14px;
justify-content: center;
}

.sobre-badge {
width: 180px;
height: 180px;
font-size: 14px;
padding: 20px;
}

.sobre-badge .material-symbols-outlined {
font-size: 34px;
}

.diferenciais {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin: -20px auto 40px;
padding: 0 14px;
}

.diferencial-item {
padding: 14px 8px;
font-size: 12px;
border-radius: 14px;
}

.diferencial-item .material-symbols-outlined {
font-size: 22px;
}
.suite-badge .material-symbols-outlined {
font-size: 15px;
}
body {
padding-top: 60px;
}

/* HEADER */

header {
height: 60px;
padding: 0 12px;
}

.logo {
height: 28px;
}

.logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.menu {
display: none;
position: fixed;
top: 60px;
right: 12px;
width: 220px;
background: rgba(58, 163, 156, 0.98);
backdrop-filter: blur(12px);
border-radius: 14px;
padding: 14px;
box-shadow: 0 12px 35px rgba(0,0,0,0.22);
flex-direction: column;
align-items: flex-start;
gap: 0;
z-index: 9999;
}

.menu.active {
display: flex;
}

.menu a {
display: block;
width: 100%;
margin: 0;
padding: 12px 8px;
font-size: 14px;
border-bottom: 1px solid rgba(255,255,255,0.12);
}

.menu a:last-child {
border-bottom: none;
}
.hamburger {
display: block;
font-size: 26px;
color: white;
cursor: pointer;
z-index: 10000;
}

/* HERO */

.hero {
min-height: 72vh;
}

.hero-content {
padding: 12px;
}

.hero-logo {
width: 220px;
margin-bottom: 14px;
}

.hero p {
font-size: 14px;
margin-bottom: 18px;
line-height: 1.4;
}

.hero-buttons {
gap: 10px;
margin-top: 18px;
flex-direction: column;
}

.hero-buttons .btn {
width: 200px;
padding: 11px 16px;
font-size: 14px;
}

/* SEÇÕES */

.section {
padding: 45px 14px;
}

.section h2 {
font-size: 26px;
margin-bottom: 28px;
}

/* EXPERIÊNCIA */

.top-text {
font-size: 14px;
margin-bottom: 28px;
}

.experiencia {
padding: 50px 14px;
}

.experiencia-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.experiencia-card img {
height: 150px;
}

.experiencia-content {
padding: 16px;
}

.experiencia-content h3 {
font-size: 18px;
}

.experiencia-content p {
font-size: 13px;
margin-bottom: 14px;
}

.experiencia-content .btn {
padding: 10px 16px;
font-size: 13px;
}

/* SUÍTES */

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

.card img {
height: 170px;
}

.card-content {
padding: 16px;
}

.card-content h3 {
font-size: 18px;
}

.card-content p {
font-size: 13px;
}

.price-badge {
font-size: 11px;
padding: 7px 10px;
}

/* GALERIA */

.gallery {
display: flex;
overflow-x: auto;
gap: 12px;
padding-bottom: 10px;
scroll-snap-type: x mandatory;
columns: unset;
}

.gallery::-webkit-scrollbar {
display: none;
}

.gallery-item {
min-width: 260px;
flex: 0 0 auto;
margin-bottom: 0;
scroll-snap-align: start;
border-radius: 14px;
overflow: hidden;
}

.gallery-item img {
width: 260px;
height: 180px !important;
object-fit: cover;
display: block;
}

.gallery-item span {
font-size: 12px;
}

.gallery-item span {
font-size: 11px;
padding: 6px 10px;
}

/* RESERVAS */

.reservas-grid {
grid-template-columns: 1fr;
gap: 14px;
}

.reserva-card {
padding: 16px;
box-sizing: border-box;
}

.reserva-icon {
width: 40px;
height: 40px;
margin-bottom: 12px;
}

.reserva-icon .material-symbols-outlined {
font-size: 24px;
}

.reserva-card h3 {
font-size: 16px;
}

.reserva-card p {
font-size: 12px;
line-height: 1.4;
}

.localizacao-lista {
max-width: 700px;
margin: 30px auto 0;
text-align: left;
}

.localizacao-lista p {
font-size: 17px;
color: #444;
margin-bottom: 14px;
font-weight: 500;
}

/* FAQ */

.faq {
padding: 50px 14px;
}

.faq-question {
padding: 16px;
font-size: 14px;
}

.faq-answer p {
padding: 0 16px 16px;
font-size: 13px;
}

/* URGÊNCIA */

.urgencia {
padding: 16px 12px;
}

.urgencia-box {
padding: 14px;
font-size: 13px;
}

/* FOOTER */

footer {
padding: 40px 14px 18px;
}

.footer-grid {
gap: 20px;
}

.footer-grid p {
font-size: 13px;
}

/* FLOAT */

.whatsapp-float {
display: none;
}

.mobile-reserva {
height: 56px;
font-size: 16px;
}

}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
  .gallery {
  columns: 1;
}
}
/* MODAL GALERIA */

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: zoomModal 0.25s ease;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 46px;
  cursor: pointer;
  font-weight: bold;
}

@keyframes zoomModal {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.reservas {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.reservas-texto {
  font-size: 18px;
  color: var(--texto-suave);
  margin-bottom: 35px;
}

.reservas-opcoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reservas-opcoes .btn {
  min-width: 190px;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 100%;
width: 100%;
padding: 40px 0;
}


.hero-glass {
  width: 100%;
  margin-left: 0;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  padding: 30px 20px;
  margin-bottom: 24px;
}
.faixa-breve {
  position: absolute;
  top: 100px;

  left: 0;
  right: 0;

  width: 100%;

  background: rgba(255, 140, 0, 0.95);

  color: white;

  text-align: center;

  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;

  padding: 14px 0;

  z-index: 20;

  pointer-events: none;
}
.btn-disabled {
  background: #bdbdbd !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn-disabled:hover {
  transform: none !important;
  background: #bdbdbd !important;
}
.card-disabled {
  cursor: default;
  pointer-events: none;
}

.card-disabled .card {
  opacity: 0.9;
}
.localizacao-destaques {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.localizacao-item {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #f8fbfb;

  padding: 18px;
  border-radius: 14px;

  border: 1px solid rgba(58,163,156,.10);
}

.localizacao-item .material-symbols-outlined {
  color: #3aa39c;
  font-size: 26px;
}
.localizacao-texto {
  max-width: 850px;
  margin: 30px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
.mobile-reserva {
display: none;
}
.mapa-estatico {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
}

.mapa-estatico img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.mapa-estatico:hover img {
  transform: scale(1.03);
}

.overlay-mapa {
  position: absolute;
  bottom: 20px;
  right: 20px;

  background: rgba(0,0,0,0.75);
  color: white;

  padding: 10px 16px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;
}

.reservas-topo {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.reservas-base {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.reservas-topo .reserva-card {
max-width: 280px;
width: 100%;
}

.whats-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;

background: rgba(0,0,0,.75);

z-index: 999999;

justify-content: center;
align-items: center;
}

.whats-box {
background: white;

width: 90%;
max-width: 400px;

padding: 20px;

border-radius: 20px;

position: relative;

max-height: 85vh;
overflow-y: auto;
}

.whats-box h3 {
text-align: center;
margin-bottom: 25px;
color: var(--verde);
}

.whats-option {
display: flex;
align-items: center;
gap: 18px;

padding: 16px 18px;
margin-bottom: 12px;

background: #f7f9f9;
border-radius: 12px;

text-decoration: none;
color: #333;
font-weight: 600;

transition: .2s;
}
.whats-option .material-symbols-outlined {
width: 28px;
height: 28px;

display: flex;
align-items: center;
justify-content: center;

font-size: 24px;
color: var(--verde);

flex-shrink: 0;
}
.whats-option:hover {
background: var(--verde);
color: white;
}
.whats-option:hover .material-symbols-outlined {
color: white;
}
.close-whats {
position: absolute;
top: 12px;
right: 18px;
font-size: 30px;
cursor: pointer;
}