/* style.css v2.2 – Vida Digna */

/* ===== RESET E BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === Cores === */
  --branco: #ffffff;
  --preto: #111111;
  --cinza-bg: #f5f5f5;
  --cinza-light: #ececec;
  --cinza-medio: #aaaaaa;
  --cinza-escuro: #666;
  --verde: #01a99f;
  --verde-hover: #018f88;
  --rosa: #d67199;

  /* === Tipografia === */
  --fonte-base: "Roboto", Arial, sans-serif;
  --tamanho-corpo: 1.1rem;
  --tamanho-pequeno: 0.9rem;
  --tamanho-micro: 0.75rem;

  /* === Layout & Spacing === */
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  --max-site: 1100px;

  /* === Header === */
  --header-height: 100px;

  /* === Breakpoints === */
  --bp-tablet: 900px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--cinza-bg);
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--fonte-base);
  color: var(--preto);
  background: var(--cinza-bg);
  min-height: 100vh;
  line-height: 1.6;
  font-size: var(--tamanho-corpo);
}

/* ===== CONTAINER ===== */

.container {
  width: 100%;
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0 5vw;
  gap: 2rem;
}

.espaco {
  padding: 40px 0;
}

/* ===== HEADER ===== */

.header-transparente {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--header-height);
  background: #fff;
  backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.header-transparente.scrolled {
  background: #fff;
  box-shadow: var(--shadow);
}

.header-transparente .logo {
  max-height: 56px;
  filter: none;
}

/* ===== NAVEGAÇÃO ===== */
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0 5vw;
}

/* ===== MENU (Mobile) ===== */
.menu {
  position: fixed;
  top: var(--header-height);
  left: 10vw;
  right: 10vw;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  list-style-type: none;
}

.menu li a,
.menu li .btn-call {
  display: block;
  width: 100%;
  padding: 1.2rem 8vw;
  font-size: 1.05rem;
  color: var(--verde);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.15s, color 0.15s;
}

.menu li:last-child a,
.menu li:last-child .btn-call {
  border-bottom: none;
  color: #fff;
}

.menu li a:hover,
.menu li a:focus {
  background: var(--verde);
  color: #fff;
}

.menu li .btn-call:hover,
.menu li .btn-call:focus {
  background: var(--rosa);
  color: #fff;
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  aspect-ratio: 1 / 1;
  padding: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  color: var(--cinza-escuro);
  border: none;
  transition: background 0.16s, color 0.16s;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(1, 169, 159, 0.1);
  color: var(--verde);
}

.menu-toggle.is-open {
  background: var(--verde);
  color: #fff;
}

.header-transparente.scrolled .menu-toggle {
  color: var(--cinza-escuro); /* ícone verde */
  background: transparent; /* mantém fundo transparente */
}
.header-transparente.scrolled .menu-toggle:hover {
  color: var(--verde); /* ícone verde */
  background: transparent; /* mantém fundo transparente */
}
.header-transparente.scrolled .menu-toggle.is-open {
  background: var(--verde);
  color: white;
}

/* ===== BOTÃO “LIGAR AGORA” ===== */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7rem 1.4rem;
  background: var(--verde);
  color: var(--branco);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-call:hover,
.btn-call:focus {
  background: var(--verde-hover);
}

.menu li .btn-call {
  border-bottom: none;
}

.btn-call [data-lucide] {
  line-height: 1;
  vertical-align: middle;
}

/* ===== HERO ===== */
.hero2 {
  width: 100vw;
  min-height: clamp(450px, 70vh, 600px);
  padding-top: var(--header-height);
  background: url("assets/galeria/vd-exterior-arealivre-07.webp") center/cover
    no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

#hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.12) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}

/*
.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(214, 113, 153, 0.18) 0%,
    rgba(229, 180, 86, 0.1) 14%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
  pointer-events: none;
}
*/

.hero2__conteudo {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 92vw;
  margin: 0 0 50px 0;
  color: #fff;
  isolation: isolate;
}

.hero2__conteudo::before {
  content: "";
  position: absolute;
  inset: -22% -12% -14% -26%;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-image: radial-gradient(
    ellipse farthest-side at 50% 50%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0) 92%
  );
  mask-image: radial-gradient(
    ellipse farthest-side at 50% 50%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0) 92%
  );
}

.hero2__conteudo::after {
  content: "";
  position: absolute;
  inset: -32% -18% -22% -38%;
  background: radial-gradient(
    ellipse farthest-side at 50% 52%,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.22) 38%,
    rgba(0, 0, 0, 0) 72%
  );
  filter: blur(10px);
  opacity: 0.5;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.hero2__conteudo > * {
  position: relative;
  z-index: 1;
}

.hero2__micro {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.hero2__titulo {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
}

.hero2__sub {
  font-size: 1rem;
  margin-bottom: 1.6rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.hero2__botoes {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ===== BOTÕES HERO ===== */
.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.09);
  transition: background 0.14s, color 0.14s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn2--primario {
  background: var(--verde);
  color: #fff;
}

.btn2--primario:hover,
.btn2--primario:focus {
  background: var(--verde-hover);
  color: #fff;
}

.btn2--secundario {
  background: #fff;
  color: var(--preto);
  border: 1px solid var(--cinza-light);
}

.btn2--secundario:hover,
.btn2--secundario:focus {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
}

.menu {
  display: none;
}

/* Estrutura do player dentro do hero */
.vd-player {
  margin-top: 2rem;
}

.vd-player[hidden] {
  display: none !important;
}

.vd-frame {
  position: relative;
  width: 100%;
  max-width: 960px; /* ajuste conforme seu grid */
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* mantém 16:9 responsivo */
  border-radius: 8px;
  overflow: hidden;
  background: #000; /* evita flash branco antes do poster */
}

.vd-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* módulo com controles: mostra inteiro, sem cortar */
}

.vd-fallback {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

/* Opcional: espaço extra em telas muito baixas */
@media (max-height: 700px) {
  .vd-player {
    margin-top: 1.25rem;
  }
}

/* PART 2*/

/* === Passo 2 v2.4 – Menu Desktop (atualizado) === */
@media (min-width: 768px) {
  .hero2__conteudo {
    position: relative;
    z-index: 1;
    max-width: 580px;
    width: 92vw;
    margin: 0 0 50px 0;
    color: #fff;
  }

  .hero2__micro {
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    margin-bottom: 0.75rem;
  }

  /* 2) Título principal maior e mais “imponente” */
  .hero2__titulo {
    font-size: clamp(2rem, 5vw, 3rem);
    /* cresce até 4rem */
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  /* 3) Subtítulo um pouco maior para leitura */
  .hero2__sub {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
  }

  /* 4) Botões do Hero maiores e com mais espaçamento */
  .hero2__botoes .btn2 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  /* 1) Menu em linha, sem herdar estilos mobile */
  .menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    gap: 2rem !important;
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
    padding: 0 !important;
    list-style: none !important;
  }

  /* 2) Esconder o botão hamburger */
  .menu-toggle {
    display: none !important;
  }

  /* 3) Itens sem bordas */
  .menu li,
  .menu li a,
  .menu li .btn-call {
    border: none !important;
  }

  /* 4) Links em branco, sem underline e com padding vertical leve */
  .menu li a,
  .menu li .btn-call {
    display: inline-flex !important;
    align-items: center;
    padding: 0.5rem 0 !important;
    color: var(--cinza-escuro) !important;
    text-decoration: none !important;
    border-bottom: none !important;
  }

  .hero2 {
    min-height: clamp(600px, 60vh, 800px);
  }
}

/* === Passo 3: Container no Header – CSS completo === */
.header-transparente > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* preenche a altura do header */
  /* padding e max-width já vêm de .container */
}

.header-transparente > .container .nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* ocupa toda a largura interna da .container */
  max-width: none;
  /* remove restrição antiga */
  margin: 0;
  /* remove qualquer margem */
  padding: 0;
  /* remove padding móvel */
}

/* Opcional: um gap mínimo entre logo e menu */
.header-transparente .nav-main {
  gap: 1.5rem;
}

/* SECTION - GLOBAIS */

.section-titulo-linha {
  background-color: var(--verde);
  height: 2px;
  margin: 0 auto 40px auto;
  width: 100px;
}

.section-titulo {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin: 1rem 0;
  color: var(--preto);
}

/* HOSPEDAGENS */

/* Ajuste para apenas 2 cards na seção Hospedagens */
.hospedagens__cards {
  display: grid;
  gap: 2rem;
  justify-content: center;
}

/* Garante duas colunas equilibradas em telas médias/grandes */
@media (min-width: 768px) {
  .hospedagens__cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

/* Mantém os cards centralizados e com boa largura */
.hospedagens__cards .card {
  max-width: 450px;
  margin: 0 auto;
}

.card {
  background: white;
  max-width: 400px;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 3rem;
  color: #2ec4b6;
  margin-bottom: 1.5rem;
}

.card h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: var(--verde);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.btn:hover {
  background-color: var(--verde-hover);
}

.card-list {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
  line-height: 1.4;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--verde);
}

/* ===== TRUSTBAR ===== */
.trustbar {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trustbar__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .trustbar__grid {
    grid-template-columns: 1fr 2fr;
    /* 2/5 esquerda, 3/5 direita */
    align-items: start;
  }
}

/* COLUNAS BASE */
.trustbar__coluna {
  text-align: center;
}

/* COLUNA ESQUERDA */
.trustbar__selo {
  width: 80px;
  margin-bottom: 1rem;
}

.trustbar__titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.trustbar__sub {
  font-size: 1rem;
  color: var(--cinza-medio);
  line-height: 1.5;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* COLUNA DIREITA */
.trustbar__legal-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 1.8rem;
}

.trustbar__selos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .trustbar__selos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trustbar__selo-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  max-width: 160px;
}

.trustbar__selo-legal img {
  height: 56px;
  width: auto;
}

.trustbar__selo-legal p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--preto);
  line-height: 1.4;
}

/*PART 3*/

/* SOBRE NÓS */
.sobre_conteudo {
  max-width: 600px;
  padding: 5vw;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  font-size: var(--tamanho-pequeno);
}

.sobre_autoras {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 40px auto;
  max-width: 1100px;
  padding: 5vw;
  position: relative;
  z-index: 1;
}

.sobre_autoras_foto {
  flex: none;
  margin: 0 auto;
  position: relative;
  transform: rotate(-2deg);
  z-index: 1;
  max-width: 98vw;
  width: 100%;
}

.sobre_autoras_foto img {
  border: 1px solid #f5f5f5;
  border-radius: 0;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.25);
  margin: 0;
  width: 100%;
}

.sobre_autoras_box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  max-width: 650px;
  margin: -100px 10px 0 10px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.sobre_autoras_box p {
  font-style: italic;
  line-height: 1.3;
  font-size: var(--tamanho-pequeno);
  text-align: left;
}

.sobre_autoras_box_assinatura {
  font-style: normal;
  font-weight: 700;
  margin-top: 1rem;
  font-size: var(--tamanho-pequeno);
}

@media (min-width: 768px) {
  .sobre_conteudo {
    font-size: var(--tamanho-corpo);
    line-height: 1.5;
    padding: 0;
  }

  .sobre_autoras {
    flex-direction: row;
  }

  .sobre_autoras_foto {
    flex: 0 0 500px;
    margin: 0 -180px 0 0;
  }

  .sobre_autoras_box {
    margin: 0;
  }

  .sobre_autoras_box_assinatura,
  .sobre_autoras_box p {
    font-size: var(--tamanho-corpo);
  }
}

/* SERVIÇOS */

.servicos-bg {
  background: #fff;
}

.section-com-bg {
  background: #fff;
}

#estrutura {
  padding: 40px 0 64px;
}

.column {
  max-width: 100%;
}
.column-imagem {
  display: none;
}
.fundo-curvo {
  display: none;
}

@media (min-width: 768px) {
  .two-column {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  #direita.two-column {
    flex-direction: row-reverse;
  }

  .column {
    flex: 1;
    max-width: 50%;
    padding: 1rem;
    width: 100%;
  }
  .section-com-bg {
    position: relative;
    overflow: hidden;
  }

  .fundo-curvo {
    position: absolute;
    top: 0;
    width: clamp(300px, 50vw, 680px);
    height: 450px;
    background-size: cover;
    display: flex;
    z-index: 0;
    filter: brightness(0.97) saturate(0.5) contrast(0.96);
    top: 5rem;
  }

  .fundo-curvo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 169, 159, 0.62); /* verde brand — ajuste opacidade */
    mix-blend-mode: none; /* “cola” a cor sem opacar demais */
    pointer-events: none;
    border-top-left-radius: inherit; /* garante que segue o raio */
    border-top-right-radius: inherit;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
  }

  .fundo-curvo__direita {
    right: 0;
    background-position: center right;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  }

  .fundo-curvo__esquerda {
    left: 0;
    background-position: center left;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
  }

  #imagem_saude {
    background-image: url("assets/ia-saude.jpg");
  }
  #imagem_conforto {
    background-image: url("assets/galeria/vd-interior-sala-10-a.jpg");
  }
  #imagem_atividades {
    background-image: url("assets/ia/ia-vd-atividades.jpg");
  }
  #imagem_alimentacao {
    background-image: url("assets/ia/ia-vd-alimentacao.jpg");
  }
  /* Ajuste fino: centraliza a imagem curvada do bloco “Alimentação” */
  #imagem_alimentacao {
    top: 50%;
    transform: translateY(-50%);
  }

  .section-com-bg .container {
    position: relative;
    z-index: 2;
  }
  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column.invertido {
    flex-direction: row-reverse;
  }

  .column {
    flex: 1;
  }

  .column-imagem {
    flex: 0 0 clamp(300px, 40vw, 600px);
  }
}

.servico-titulo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.servico-icone {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.lista-servico {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}

.lista-servico li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.lista-servico li::before {
  content: none;
}

.lista-servico li svg.icon-lucide {
  color: var(--verde);
  stroke: currentColor;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0.2em;
}

.stats-bar {
  display: flex;
  gap: 2rem;
  margin: 1.2rem 0;
  border: 1px solid #ddd;
  padding: 10px;
}

.stat-number {
  font: 700 2rem/1 var(--font-heading);
  color: var(--rosa);
}

.stat-label {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #555;
}

.label-open {
  display: none;
}

details[open] .label-open {
  display: inline;
}

details[open] .label-closed {
  display: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

summary::before {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s;
  text-decoration: none;
}

details[open] summary::before {
  content: "–";
}

details p {
  margin: 0.75rem 0 1rem 1.8rem;
  color: #555;
  line-height: 1.4;
  max-width: 60ch;
}

details summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--rosa);
  font-weight: 600;
  outline: none;
  list-style: none;
  text-decoration: none;
  /* nada sublinhado aqui */
}

summary .toggle-label {
  text-decoration: underline;
  /* só o texto ganha linha */
}

/* ====== ITEM 1 – DESKTOP (≥ 768 px) ====== */
@media (min-width: 768px) {
  /* --- Botão “Ligar Agora” (estado normal) --- */
  .menu li .btn-call {
    font-size: 1rem !important;
    letter-spacing: 0.03em !important;
    padding: 0.7rem 1.8rem !important;
    color: var(--branco) !important;
    background: var(--verde);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22) !important;
    text-decoration: none !important;
  }
  .menu li .btn-call [data-lucide] {
    width: 18px;
    height: 18px;
  }

  /* --- Botão – hover/focus --- */
  .menu li .btn-call:hover,
  .menu li .btn-call:focus {
    background: var(--verde-hover) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  }

  /* --- Cor dos links quando o header está scrolled --- */
  .header-transparente.scrolled .menu li a:not(.btn-call) {
    color: var(--cinza-escuro) !important;
  }
  .header-transparente.scrolled .menu li .btn-call {
    color: var(--branco) !important; /* garante texto branco */
  }

  /* --- Hover dos LINKS (exceto botão) --- */
  .header-transparente:not(.scrolled) .menu li a:not(.btn-call):hover,
  .header-transparente:not(.scrolled) .menu li a:not(.btn-call):focus {
    color: var(--verde) !important;
    background: transparent !important;
    text-decoration: underline !important;
  }
  .header-transparente.scrolled .menu li a:not(.btn-call):hover,
  .header-transparente.scrolled .menu li a:not(.btn-call):focus {
    color: var(--verde) !important;
    background: transparent !important;
    text-decoration: underline !important;
  }
}

/*PART 4*/

/* Galeria de imagens */
.galeria-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.galeria-grid img {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

/* Lightbox */
.lightbox {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 90%;
}

.lightbox-close {
  color: white;
  cursor: pointer;
  font-size: 3.5rem;
  position: absolute;
  right: 30px;
  top: 20px;
}

.lightbox-nav {
  color: white;
  display: flex;
  font-size: 4rem;
  justify-content: space-between;
  padding: 0 30px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
}

/* Paginação */

.paginacao {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.paginacao button {
  background: none;
  border: 1px solid var(--verde);
  border-radius: 4px;
  color: var(--verde);
  cursor: pointer;
  font-size: var(--tamanho-corpo);
  padding: 8px 14px;
  transition: 0.3s;
}

.paginacao button.active,
.paginacao button:disabled,
.paginacao button:hover {
  background-color: var(--verde);
  color: white;
}
.galeria-grid img {
  aspect-ratio: 1/1;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

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

.galeria-grid img {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.galeria-grid img[src] {
  opacity: 1;
}

.galeria-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.galeria-caption {
  color: var(--texto);
  font-size: 0.9rem;
  text-align: center;
  word-break: break-all;
}

.galeria-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px; /* espaço pra não cortar sombra */
}
.galeria-scroll a {
  flex: 0 0 70vw; /* miniaturas ~70% da largura */
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .galeria-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
  }
  .galeria-scroll {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(4, 1fr);
  }
  .galeria-scroll a {
    flex: none; /* deixa o grid assumir tamanho */
  }
}

/* ===== FAQ – acordeão ===== */
.faq {
  background: #fff;
}

.faq-wrapper details {
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

.faq-wrapper summary {
  display: grid;
  grid-template-columns: auto 1fr; /* ícone | texto que quebra */
  gap: 0.5rem;
  cursor: pointer;
  color: var(--rosa);
  font-weight: 600;
  list-style: none;
  text-decoration: none;
  outline: none;
  align-items: start; /* ícone topo da primeira linha */
}
.faq-wrapper summary::before {
  transform: translateY(4px); /* ajuste fino: 1-4 px conforme a fonte */
}

/* esconder marcador WebKit e Firefox */
summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

/* ícone custom + / – */
summary::before {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s;
  text-decoration: none;
}

details[open] summary::before {
  content: "–";
}

/* corpo da resposta */
details p {
  margin: 0.75rem 0 1rem 1.8rem;
  /* indent sob o ícone */
  color: #555;
  line-height: 1.4;
  max-width: 60ch;
}

/* Depoimentos */

#depoimentos .testimonial-slider {
  --swiper-theme-color: var(--verde);
  --swiper-navigation-color: var(--verde);
  overflow: hidden;
  padding: 2rem 0 4rem;
  position: relative;
}

#depoimentos .swiper-slide {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  max-width: 600px;
  opacity: 0.4;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  width: 90%;
}

#depoimentos .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 10;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 600px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
}

.testimonial-name {
  margin-top: 1.2rem;
  font-style: italic;
}

.testimonial-card .aspas {
  color: var(--rosa);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stars {
  margin: 0.75rem 0;
}

.star {
  color: gold;
  font-size: 1.2rem;
  margin: 0 2px;
}

#depoimentos .swiper-button-prev,
#depoimentos .swiper-button-next {
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#depoimentos .swiper-button-prev:after,
#depoimentos .swiper-button-next:after {
  color: var(--verde);
  font-size: 1.8rem;
}

#depoimentos .swiper-button-prev {
  left: 1rem;
}

#depoimentos .swiper-button-next {
  right: 1rem;
}

#depoimentos .swiper-pagination {
  align-items: center;
  bottom: 1rem !important;
  display: flex !important;
  gap: 0.5rem;
  justify-content: center !important;
  left: 0 !important;
  position: absolute !important;
  width: 100% !important;
}

#depoimentos .swiper-pagination-bullet {
  background-color: #ddd;
  height: 10px;
  opacity: 1;
  transition: transform 0.2s;
  width: 10px;
}

#depoimentos .swiper-pagination-bullet-active {
  background: var(--rosa) !important;
  transform: scale(1.4);
}
.aspas {
  color: var(--rosa);
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Contato */

#contato {
  background: #fff;
}

.contato-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.contato-info {
  color: var(--texto);
  flex: 1;
  font-size: var(--tamanho-corpo);
  min-width: 280px;
  text-align: center;
}

.contato-info p {
  line-height: 1.6;
  margin-bottom: 40px;
}

.contato-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 280px;
}

.contato-form label {
  color: var(--texto);
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 15px;
  text-align: left;
}

.contato-form input,
.contato-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: var(--tamanho-corpo);
  padding: 10px;
  width: 100%;
}

.contato-form input.erro,
.contato-form textarea.erro {
  border-color: var(--rosa);
}

.contato-info .icone-lucide {
  color: var(--verde);
  height: 26px;
  margin-top: 8px;
  stroke: var(--verde);
  width: 26px;
}

.lgpd-contato {
  font-size: var(--tamanho-micro);
  color: #888;
  font-style: italic;
  margin-top: 1rem;
}

/*PART 5*/

.botao-enviar {
  background-color: var(--verde);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-size: var(--tamanho-corpo);
  font-weight: bold;
  margin-top: 20px;
  padding: 14px 24px;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.botao-enviar:hover {
  background-color: var(--verde-hover);
}

#form-feedback {
  margin-bottom: 1em;
}

#form-feedback.success-message {
  color: #27ae60;
  font-style: normal;
}

#form-feedback.error-message {
  color: #e74c3c;
  font-style: italic;
}

.error-message {
  color: #e74c3c;
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 4px;
  min-height: 1em;
  text-align: left;
}

a[href*="maps"] {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--verde);
  text-decoration: underline;
}
a[href*="maps"]:hover {
  color: var(--verde-hover);
}

a[href*="maps"] svg.lucide-map-pin {
  width: 20px; /* menor que o padrão 24 px */
  height: 20px;
  stroke-width: 1.8; /* traço um pouco mais fino */
  vertical-align: -4px; /* desce ~2 px – ajuste fino */
  margin-right: 4px;
  display: inline-block;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--cinza-escuro);
  color: #eee;
  padding: 2.5rem 0;
  font-size: 0.95rem;
}
.footer-container {
  display: grid;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* colunas desktop */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  /* NAV em coluna (um item por linha) */
  .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* ⬅️ muda de row → column */
    gap: 0.4rem; /* espaço vertical entre links */
  }
}

/* LOGO + crédito */
.footer-logo {
  width: 140px;
  margin-bottom: 0.8rem;
  filter: brightness(0) invert(1);
}
.footer-credit {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* NAV */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--verde);
}

/* INFO + SELOS + SOCIAL */
.footer-info a {
  color: var(--verde);
  text-decoration: underline;
}
.footer-info {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social i,
.footer-social svg {
  width: 22px;
  height: 22px;
  stroke: #ccc;
  stroke-width: 2px;
  transition: stroke 0.2s;
}
.footer-social .footer-whatsapp-icon {
  display: block;
  stroke: none;
  fill: #ccc;
  transition: fill 0.2s;
  transform: scale(1.22);
  transform-origin: center;
}
.footer-social a:hover i,
.footer-social svg:hover {
  stroke: var(--verde);
}
.footer-social a:hover .footer-whatsapp-icon {
  fill: var(--verde);
  stroke: none;
}

.whatsapp-ico {
  fill: white;
  width: 50px;
  height: 50px;
  padding: 3px;
  background-color: #4dc247;
  border-radius: 50%;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.whatsapp-ico:hover {
  box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.3);
}

/* === MODAL DO VÍDEO (lightbox dedicado) === */
.vd-modal[hidden] {
  display: none !important;
}
.vd-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}

.vd-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.vd-dialog {
  position: relative;
  width: min(92vw, 1100px);
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.vd-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
}
.vd-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vd-media {
  width: 100%;
  height: min(80vh, 62vw);
  display: block;
  background: #000;
}
.vd-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* utilidade para acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* bloqueia rolagem do body quando modal aberto */
body.vd-no-scroll {
  overflow: hidden;
}

/* === Corte inteligente no vídeo (portrait) === */
/* Em retrato, o vídeo ocupa a tela e corta laterais (cover). Em paisagem, continua contain. */
@media (orientation: portrait) {
  .vd-modal {
    display: grid;
    place-items: center;
  }
  .vd-dialog {
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0; /* full-screen */
    background: #000;
  }
  .vd-media {
    width: 100vw;
    height: 100vh; /* usa a tela toda */
    background: #000;
  }
  .vd-media video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✦ corte inteligente (lateral) */
    object-position: center; /* centraliza o corte */
    /* ajuda a manter proporção “visível” no retrato */
    aspect-ratio: 9 / 16;
  }
  .vd-close {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
  }
}

/* Em paisagem, mantém sem corte (contain) — já está no CSS anterior: .vd-media video { object-fit: contain; } */

.lightbox-caption {
  margin-top: 0.75rem;
  color: #f5f5f5;
  font-size: 0.95rem;
  text-align: center;
  max-width: 90%;
}
