/* ==========================================
   VILLA AMERICANA – STYLESHEET
   ========================================== */

/* ---- Fontes locais ---- */
@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Transcend';
  src: url('../../fontes/Transcend Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../../fontes/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

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

:root {
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #6b6b6b;
  --gray2: #4a4f4a;
  --light: #f5f3f0;
  --white: #ffffff;
  --gold: #b8a07a;
  --font-serif: 'Transcend', Georgia, serif;
  --font-sans: 'Roboto', sans-serif;
}


/* Compensa a navbar fixa ao navegar por âncoras */
section[id],
footer[id] {
  scroll-margin-top: 72px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ---- Reveal animations ---- */
.reveal,
.reveal-white {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 42px;
  filter: brightness(0) invert(1);
}

.nav-logo svg {
  height: 42px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  padding: 0.55rem 1.2rem !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
  opacity: 1 !important;
}

/* Ícones sociais na navbar */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0.5rem;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  transition: color 0.2s, opacity 0.2s;
}

.nav-social a:hover {
  color: var(--white);
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* Ícones sociais no footer */
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.6rem;
  justify-content: flex-end;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../img/07.webp');
  background-size: cover;
  background-position: center;
}

/* Split line effect in hero */
.hero-split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 2;
}

.hero-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ==========================================
   SOBRE
   ========================================== */
.sobre {
  padding: 8rem 2rem;
  background: var(--white);
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sobre-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: var(--dark);
  text-transform: uppercase;
  font-kerning: normal;
}

.sobre-title strong {
  font-weight: 600;
}

.sobre-card {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.sobre-card p+p {
  margin-top: 1.2rem;
}

/* ==========================================
   LINK STYLES
   ========================================== */
.link-underline {
  display: inline-block;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.link-underline:hover {
  opacity: 0.6;
}

.link-underline-white {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.link-underline-white:hover {
  opacity: 0.6;
}

/* ==========================================
   ESTRUTURA BANNER
   ========================================== */
.estrutura-banner {
  background: var(--dark);
  overflow: hidden;
}

.estrutura-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.estrutura-banner-left {
  position: relative;
  overflow: hidden;
}

.estrutura-banner-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-image: url('../../img/11.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: transform 0.6s ease;
}

.estrutura-banner-left:hover .estrutura-banner-img {
  transform: scale(1.04);
}

.estrutura-banner-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--dark);
}

.estrutura-banner-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.estrutura-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2.2rem;
}

.estrutura-banner-title strong {
  font-weight: 800;
  color: var(--gold);
  font-weight: 600;
}

.estrutura-banner-body {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.8rem;
  max-width: 440px;
}

/* ==========================================
   DETALHES
   ========================================== */
.detalhes {
  padding: 8rem 2rem;
  background: var(--white);
}

.detalhes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}

.detalhes-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detalhes-left h2 strong {
  font-weight: 600;
}

.detalhes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.detalhe-item h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.detalhe-item h3 strong {
  font-weight: 600;
}

.detalhe-line {
  width: 48px;
  height: 2px;
  background: var(--dark);
}

/* ==========================================
   AMENIDADES
   ========================================== */
.amenidades {
  background: var(--dark);
  padding: 5rem 2rem 3rem;
}

.amenidades-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.amenidades-col ul {
  list-style: none;
}

.amenidades-col ul li {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.amenidades-col ul li::before {
  content: '●';
  font-size: 0.35rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 5px;
}

.amenidades-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}

/* ==========================================
   GALERIA
   ========================================== */
.galeria {
  padding: 8rem 2rem;
  background: var(--light);
}

.galeria-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.galeria-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.galeria-left h2 .txt-bold {
  color: var(--dark);
  font-weight: 600;
}

.galeria-left h2 strong {
  font-weight: 600;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.galeria-img {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.galeria-img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* Galeria slider */
.galeria-slide {
  display: none;
}

.galeria-slide.active {
  display: block;
  animation: gFade 0.4s ease;
}

@keyframes gFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.galeria-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.galeria-dots {
  display: flex;
  gap: 0.55rem;
}

.galeria-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.galeria-dot.active {
  background: var(--dark);
  transform: scale(1.35);
}

.galeria-arrow {
  background: none;
  border: 1px solid rgba(26, 26, 26, 0.22);
  color: var(--dark);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.galeria-arrow:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.galeria-img-1 {
  background-image: url('../../img/01.webp');
}

.galeria-img-2 {
  background-image: url('../../img/02.webp');
}

.galeria-img-3 {
  background-image: url('../../img/03.webp');
}

.galeria-img-4 {
  background-image: url('../../img/04.webp');
}

.galeria-img-5 {
  background-image: url('../../img/05.webp');
}

.galeria-img-6 {
  background-image: url('../../img/06.webp');
}

.galeria-img-7 {
  background-image: url('../../img/08.webp');
}

.galeria-img-8 {
  background-image: url('../../img/09.webp');
}

.galeria-img-9 {
  background-image: url('../../img/10.webp');
}

.galeria-img-10 {
  background-image: url('../../img/12.webp');
}

.galeria-img-11 {
  background-image: url('../../img/13.webp');
}

/* Correção do "REALIZE" — usa Semibold (600) para evitar bug do glifo R no Bold */
.txt-bold {
  font-weight: 600;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: 100%;
  max-width: 1100px;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Grade de miniaturas */
.lightbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
}

.lb-item {
  margin: 0;
  cursor: pointer;
  overflow: hidden;
}

.lb-thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, opacity 0.3s;
  opacity: 0.85;
}

.lb-item:hover .lb-thumb {
  transform: scale(1.06);
  opacity: 1;
}

/* Foto expandida */
.lightbox-foto {
  text-align: center;
}

.lightbox-foto img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lb-voltar {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.lb-voltar:hover {
  color: var(--white);
}

/* Botões de navegação */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox.foto-aberta .lightbox-prev,
.lightbox.foto-aberta .lightbox-next {
  display: flex;
}

/* Fechar */
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--white);
}

/* Contador */
.lightbox-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  display: none;
}

.lightbox.foto-aberta .lightbox-counter {
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #6F6F6C;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo-img {
  width: 160px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

.footer-contact {
  text-align: right;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--white);
  text-align: left;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.footer-cta h2 strong {
  font-weight: 600;
}

.footer-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.footer-form input {
  flex: 1;
  min-width: 160px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.9rem 0.2rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.12em;
}

.footer-form input:focus {
  border-color: var(--white);
}

.footer-form button {
  background: var(--white);
  border: none;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-form button:hover {
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.3rem 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {

  .sobre-container,
  .estrutura-banner-inner,
  .detalhes-container,
  .galeria-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .estrutura-banner-img {
    min-height: 300px;
  }

  .estrutura-banner-right {
    padding: 3rem 2rem;
  }

  .amenidades-container {
    grid-template-columns: 1fr 1fr;
  }

  .detalhes-container {
    gap: 3rem;
  }

  .galeria-container {
    gap: 3rem;
  }

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

  .footer-contact {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 1rem 0;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    margin: 0.5rem 2rem !important;
    display: inline-block !important;
  }

  /* Ícones sociais no menu mobile */
  .nav-social {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    margin-left: 0;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .sobre {
    padding: 5rem 1.2rem;
  }

  .detalhes,
  .galeria {
    padding: 5rem 1.2rem;
  }

  .amenidades {
    padding: 4rem 1.2rem 2rem;
  }

  .amenidades-container {
    grid-template-columns: 1fr;
  }

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

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



  .logo-hero-svg {
    width: 200px;
  }

  /* WhatsApp float: só ícone no mobile */
  .whatsapp-btn {
    padding: 0.85rem;
    border-radius: 50%;
    gap: 0;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================
   FOOTER WHATSAPP BUTTON
   ========================================== */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

/* Remove estilo automático de link em números de telefone (iOS/Android) */
.footer-contact a[href^="tel"],
.footer-contact a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/* Logo na área CTA do footer */
.footer-cta-logo {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1.8rem;
  display: block;
}

/* Link do logo no footer-top */
.footer-logo-area a {
  display: inline-block;
  transition: opacity 0.2s;
}

.footer-logo-area a:hover {
  opacity: 0.7;
}