/* =====================================================
   SEÇÃO 01 — HEADER (mobile)
===================================================== */
.header {
  position: relative; /* mobile: empurra o slider para baixo */
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Hamburger — mobile only */
.hamburger {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Nav links — ocultos no mobile */
.nav-links { display: none; }


/* =====================================================
   SEÇÃO 01 — LOGO (imagem real)
===================================================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 68px; /* maior no mobile */
  width: auto;
}

/* Desktop — logo maior */
@media (min-width: 900px) {
  .logo-img { height: 80px; }
}


/* =====================================================
   SEÇÃO 01 — HERO SLIDER
===================================================== */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vw; /* mobile: altura igual à largura da tela (quadrado) */
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: top center; /* mobile: mostra o topo da imagem */
}
.slide.active { opacity: 1; }

/* Overlay — removido no mobile, imagem limpa como no original */
.slide::after { display: none; }

/* Overlay volta apenas no desktop onde o header fica sobre o slider */
@media (min-width: 900px) {
  .slide::after {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
  }
}

/* Imagens — Mobile */
.slide-1 { background-image: url('img/secao-01-mobile-img01.png'); background-color: #3a4030; }
.slide-2 { background-image: url('img/secao-01-mobile-img02.png'); background-color: #5a6055; }


/* =====================================================
   SEÇÃO 01 — SETAS DE NAVEGAÇÃO
===================================================== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.arrow:hover { background: rgba(255,255,255,0.25); }
.arrow-left  { left: 14px; }
.arrow-right { right: 14px; }


/* =====================================================
   SEÇÃO 01 — DOTS INDICADORES
===================================================== */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.dot.active { background: #fff; }


/* =====================================================
   BOTÃO FLUTUANTE — WHATSAPP (só ícone)
===================================================== */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  background: #25d366;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1fb855; }
.btn-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* =====================================================
   BOTÃO VOLTAR AO TOPO
===================================================== */
.btn-topo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  background: #555;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}
.btn-topo.visible { opacity: 1; pointer-events: all; }
.btn-topo:hover { background: #333; }
.btn-topo svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   SEÇÃO 01 — MENU MOBILE (drawer lateral)
===================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 100vh;
  background: #2a2a2a;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.menu-drawer.open { transform: translateX(0); }

.menu-title {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
}

.menu-nav { list-style: none; padding: 8px 0; }
.menu-nav li a {
  display: block;
  padding: 15px 28px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #383838;
  transition: color 0.2s;
}
.menu-nav li a:hover { color: #fff; }
.menu-nav li a.active { color: #4ecb71; }


/* =====================================================
   BREAKPOINT DESKTOP (min-width: 900px)
===================================================== */
@media (min-width: 900px) {

  /* --- Header --- */
  .header {
    height: 100px;
    padding: 0 50px;
    justify-content: space-between;
    background-color: rgba(15, 15, 15, 0.78);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    /* overflow visível para logo sair do header */
    overflow: visible;
  }

  /* Hamburger some */
  .hamburger { display: none; }

  /* Slider ocupa tela toda no desktop */
  .slider-wrapper { height: 100vh; min-height: 480px; }

  /* Imagem centralizada no desktop */
  .slide { background-position: center; }

  /* Logo maior desktop */
  .logo-img { height: 90px; }

  /* Logo — centralizada com position absolute */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Nav links — aparecem nos dois lados */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover  { color: #fff; }
  .nav-links a.active { color: #4ecb71; }

  /* Imagens desktop */
  .slide-1 { background-image: url('img/secao-01-desktop-img01.png'); }
  .slide-2 { background-image: url('img/secao-01-desktop-img02.png'); }

  /* Slide 1 — texto direita, verticalmente centrado */
  .slide-1 .slide-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 7%;
    text-align: right;
    max-width: 40%;
  }
  .slide-1 .slide-content h2 {
    font-size: clamp(30px, 3.2vw, 56px);
    line-height: 1.18;
  }
  .slide-1 .slide-content .linha-verde {
    width: 80px;
    height: 4px;
    margin-top: 16px;
  }

  /* Slide 2 — texto esquerda, verticalmente centrado */
  .slide-2 .slide-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 5%;
    max-width: 60%;
  }
  .slide-2 .slide-content p {
    font-size: clamp(24px, 3vw, 46px);
    line-height: 1.25;
    white-space: nowrap;
  }
  /* "revigorante" — maior, flui para a direita sobrepondo */
  .slide-2 .slide-content .cursive {
    font-size: clamp(44px, 6.5vw, 96px);
    margin-top: -6px;
    /* permite que o texto flua além do container sem quebrar */
    white-space: nowrap;
    display: block;
  }

  /* Setas maiores e mais para as bordas */
  .arrow       { width: 54px; height: 54px; font-size: 34px; }
  .arrow-left  { left: 20px; }
  .arrow-right { right: 20px; }

  /* Dots maiores */
  .dot { width: 12px; height: 12px; }

  /* Menu drawer oculto */
  .menu-overlay,
  .menu-drawer { display: none; }
}
/* =====================================================
   SEÇÃO 02 — BEM-VINDO AO HOPE VALLEY
===================================================== */
.secao-benvindo {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 36px;
}

/* --- FOTOS SOBREPOSTAS --- */
.benvindo-fotos {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 320px;
}

/* Foto de fundo — interior chalé (maior, atrás, levemente deslocada) */
.foto-fundo {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 88%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Foto da frente — banheira (menor, na frente, deslocada para baixo-esquerda) */
.foto-frente {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 70%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* --- TEXTO --- */
.benvindo-texto {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}

.benvindo-label {
  color: #3aac5a;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.benvindo-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.5px;
}

.benvindo-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

.benvindo-btn {
  display: inline-block;
  background: #2e9e4f;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  align-self: flex-start;
}
.benvindo-btn:hover { background: #247a3e; }

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .secao-benvindo {
    flex-direction: row;
    align-items: center;
    padding: 80px 6%;
    gap: 60px;
  }

  .benvindo-fotos {
    flex: 0 0 48%;
    max-width: 48%;
    height: 480px;
  }

  .foto-fundo {
    width: 72%;
    height: 85%;
  }

  .foto-frente {
    width: 55%;
    height: 68%;
  }

  .benvindo-texto {
    flex: 1;
    gap: 20px;
  }

  .benvindo-desc {
    font-size: 15px;
  }
}/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; background: #111; scroll-behavior: smooth; }


/* =====================================================
   SEÇÃO 03 — A CIDADE / URUBICI - SC
===================================================== */
.secao-cidade {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 32px;
}

/* --- TEXTO --- */
.cidade-texto {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 580px;
  width: 100%;
}

.cidade-label {
  color: #3aac5a;
  font-size: 15px;
  font-weight: 500;
}

.cidade-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 7vw, 46px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.5px;
}

.cidade-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

/* --- FOTO --- */
.cidade-foto {
  width: 100%;
  max-width: 580px;
}
.cidade-foto img {
  width: 100%;
  height: auto;
  display: block;
  border: 5px solid #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .secao-cidade {
    flex-direction: row;          /* texto esquerda, foto direita */
    align-items: center;
    padding: 80px 6%;
    gap: 60px;
  }

  .cidade-texto {
    flex: 1;
    gap: 20px;
    max-width: none;
  }

  .cidade-desc { font-size: 15px; }

  .cidade-foto {
    flex: 0 0 52%;
    max-width: 52%;
  }
}
/* =====================================================
   SEÇÃO 04 — GALERIA DE FOTOS
===================================================== */
.secao-galeria {
  position: relative;
  background-image: url('img/secao-04-bg.png');
  background-size: cover;
  background-position: center;
  background-color: #1a2a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
  gap: 24px;
}

/* Overlay escuro sobre o fundo */
.secao-galeria::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 0;
}

/* Garante que o conteúdo fica acima do overlay */
.secao-galeria > * { position: relative; z-index: 1; }

/* --- CABEÇALHO --- */
.galeria-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.galeria-label {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.galeria-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 7vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* --- GRID DE FOTOS --- */
/* Mobile: 2 colunas iguais, 3 linhas */
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 140px);
  gap: 6px;
  width: 100%;
  max-width: 1060px;
}

.galeria-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- BOTÃO --- */
.galeria-btn {
  display: inline-block;
  background: #2e9e4f;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.galeria-btn:hover { background: #247a3e; }

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .secao-galeria {
    padding: 60px 6%;
    gap: 32px;
  }

  /* Desktop: layout 3 colunas com fotos grandes e pequenas */
  /* Linha 1: grande (2 cols) | pequena | pequena */
  /* Linha 2: pequena | pequena | grande (2 cols) */
  .galeria-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 240px);
    gap: 8px;
  }

  /* Foto grande linha 1 — ocupa 1 coluna mas 2 linhas não, só 1 linha mas 1 col grande */
  /* Na verdade é: col 1 grande (span 1 col larga), cols 2 e 3 pequenas */
  /* Linha 2: cols 1 e 2 pequenas, col 3 grande */
  .galeria-grid img.foto-grande:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .galeria-grid img.foto-pequena:nth-child(2) { grid-column: 2; grid-row: 1; }
  .galeria-grid img.foto-pequena:nth-child(3) { grid-column: 3; grid-row: 1; }
  .galeria-grid img.foto-pequena:nth-child(4) { grid-column: 1; grid-row: 2; }
  .galeria-grid img.foto-pequena:nth-child(5) { grid-column: 2; grid-row: 2; }
  .galeria-grid img.foto-grande:nth-child(6)  { grid-column: 3; grid-row: 2; }
}
/* =====================================================
   SEÇÃO 05 — CONHEÇA NOSSOS CHALÉS
===================================================== */
.secao-chales {
  background: #fff;
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: visible; /* não corta os dots */
}

/* --- CABEÇALHO --- */
.chales-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
}
.chales-label {
  color: #3aac5a;
  font-size: 15px;
  font-weight: 500;
}
.chales-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

/* --- SLIDER MOBILE --- */
.chales-slider {
  width: 100%;
  overflow: hidden;
}

.chales-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* CARD — ocupa 88% da tela com margens laterais */
.chale-card {
  flex: 0 0 88%;
  width: 88%;
  margin: 0 6%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chale-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.chale-info {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.chale-nome {
  color: #2e9e4f;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.chale-divisor {
  width: 100%;
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2px 0;
}

.chale-estrutura-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

.chale-icones {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.chale-icones svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #222;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chale-btn {
  display: inline-block;
  background: #2e9e4f;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background 0.2s;
  margin-top: 4px;
}
.chale-btn:hover { background: #247a3e; }

/* --- DOTS (mobile) --- */
.chales-dots {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.chales-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: block; /* garante visibilidade */
}
.chales-dot.active { background: #2e9e4f; }

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .secao-chales { padding: 60px 5% 50px; }

  .chales-slider { overflow: visible; }

  .chales-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
    transition: none;
  }

  .chale-card {
    flex: unset;
    width: auto;
    margin: 0;
    border-radius: 8px;
  }

  .chale-card img { height: 260px; }

  .chales-dots { display: none; }
}
/* =====================================================
   SEÇÃO 06 — FALE COM A GENTE
===================================================== */
.secao-contato {
  background: #f0f0f0;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* --- CABEÇALHO --- */
.contato-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contato-label {
  color: #2e9e4f;
  font-size: 15px;
  font-weight: 500;
}
.contato-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 7vw, 52px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.5px;
}
.contato-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* --- FORMULÁRIO --- */
.contato-form {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Linha dos 3 inputs — mobile empilhado */
.contato-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Campos de input */
.contato-input,
.contato-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contato-input::placeholder,
.contato-textarea::placeholder {
  color: #2e9e4f;
  font-weight: 500;
}
.contato-input:focus,
.contato-textarea:focus {
  border-color: #2e9e4f;
}
.contato-textarea {
  resize: vertical;
  min-height: 160px;
}

/* Botão centralizado */
.contato-btn-wrap {
  display: flex;
  justify-content: center;
}
.contato-btn {
  background: #2e9e4f;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.contato-btn:hover { background: #247a3e; }

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .secao-contato { padding: 64px 6%; }

  /* 3 colunas na mesma linha */
  .contato-row {
    flex-direction: row;
    gap: 16px;
  }
  .contato-row .contato-input { flex: 1; }
}
/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #2a2a2a;
  color: #ccc;
  font-size: 14px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 32px;
}

/* Logo */
.footer-logo { height: 90px; width: auto; }

/* Cada coluna */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Títulos verdes */
.footer-titulo {
  color: #2e9e4f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 8px;
}
.footer-col .footer-titulo:first-child { margin-top: 0; }

.footer-texto {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Acesso rápido — links */
.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav li:first-child a { color: #2e9e4f; }
.footer-nav li a:hover { color: #fff; }

/* Ícones sociais */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  stroke: none;
}

/* Botão reserva */
.footer-reserva-btn {
  display: inline-block;
  background: #2e9e4f;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  margin-top: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-reserva-btn:hover { background: #247a3e; }

/* Barra copyright */
.footer-bottom {
  background: #1c1c1c;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #333;
}
.footer-bottom p { margin: 0; }

/* --- DESKTOP --- */
@media (min-width: 900px) {
  .footer-main {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 50px 6%;
    gap: 40px;
  }

  .footer-col { align-items: flex-start; }
  .footer-logo-col { flex: 0 0 200px; }
  .footer-social-col { align-items: flex-start; }

  /* Botão WA desktop — com texto */
  .btn-whatsapp {
    width: auto;
    height: auto;
    border-radius: 50px;
    padding: 12px 20px;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
  }
  .btn-whatsapp::after {
    content: 'Chame no WhatsApp';
    white-space: nowrap;
  }
  .btn-whatsapp svg { width: 20px; height: 20px; }
}