:root {
  --rosa-pastel: #f4a7b9;
  --bege-rosado: #fce8e3;
  --rosa-forte: #e86c88;
  --cinza: #333;
  --header-height: 110px; /* Base Mobile */
}

/* Reset e Box-Sizing Universal */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bege-rosado);
  color: var(--cinza);
  /* padding-top: var(--header-height); */
  transition: padding-top 0.3s ease;
}
h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--rosa-forte);
  padding-top: 75px;
}

.h2branco {
  color: var(--bege-rosado);
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 30px;
}

.colorbege {
  color: var(--bege-rosado);
  margin: 0px;
  padding-bottom: 20px;
}
.colorrosa {
  color: var(--rosa-forte);
  margin: 0px;
  padding-bottom: 20px;
}

p {
  color: var(--cinza);
  font-size: 14px;
  text-indent: 50px;
}
li {
  font-size: 14px;
}
hr {
  color: var(--rosa-forte);
}

.container {
  width: 100vw;
  max-width: 1100px;
  align-items: center;
}

/* ================= HEADER ================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: var(--bege-rosado);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  height: 50px;
}

/* ================= MENU DESKTOP ================= */

nav {
  display: flex;
  align-items: center;
  text-align: center;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: var(--cinza);
  font-weight: 600;
  padding: 10px 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px; /* espaço para a linha */
}

.menu li a:hover {
  color: var(--rosa-forte);
}

/* Linha animada */
.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* joga a linha para fora do texto */
  width: 0%;
  height: 3px;
  background: var(--rosa-forte);
  transition: width 0.3s ease;
}

/* Hover */
.menu li a:hover::after {
  width: 100%;
}

/* ================= BOTÃO MENU MOBILE ================= */

#menuToggle {
  display: none;
  font-size: 32px;
  color: var(--rosa-forte);
  cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width: 1150px) {
  #menuToggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--bege-rosado);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  nav.active {
    display: flex;
  }

  nav .menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .menu li a {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}

/* ================= BANNER COM VÍDEO ================= */

.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
}

/* VÍDEO */
.video-banner {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

/* ESCURECE O VÍDEO */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* TEXTO E BOTÕES */
.banner h1,
.banner h2,
.banner a,
.btn-mute {
  position: relative;
  z-index: 2;
}

/* BOTÃO WHATS */
.btn-whats-banner {
  background-color: #25d366;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-shadow: 1px 1px 2px var(--cinza);
  box-shadow: 2px 2px 4px var(--cinza);
}

.btn-whats-banner:hover {
  background-color: #1ebe5d;
}

/* BOTÃO MUDO */
.btn-mute {
  position: absolute;
  top: 20px;
  right: 20px;

  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 1.8rem;
  }

  .banner h2 {
    font-size: 1rem;
  }
}

/* SEÇÃO HOME / BANNER */

.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("../img/fachadaHearts.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0px;
}

/* ESCURECER LEVEMENTE O FUNDO PARA MELHOR LEGIBILIDADE DO TEXTO */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* CONTEÚDO SOBRE O FUNDO */
.banner h1,
.banner h2,
.banner a {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* TÍTULOS */
.banner h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.banner h2 {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* BOTÃO */
.banner a button {
  background-color: #25d366;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.banner a button:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* ESCONDE A IMAGEM ORIGINAL CASO ESTEJA NO HTML */
.ft-banner {
  display: none;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 1.8rem;
  }
  .banner h2 {
    font-size: 1rem;
  }
  .banner a button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ================= SECTION SOBRE ================= */

#sobre.container {
  width: 100%;
  max-width: 1200px; /* respeita o seu container */
  margin: 0 auto;
  padding: 0 20px;
}

#sobre .ft_sobre {
  display: flex;
  flex-direction: column; /* imagem em cima, texto embaixo */
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ---- FOTO ---- */
#sobre .foto-section {
  width: 100%;
  height: 80vh; /* usa 80% da tela conforme solicitado */
  overflow: hidden;
  border-radius: 10px;
}

#sobre .foto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção sem distorcer */
  object-position: center;
  display: block;
}

/* ---- TEXTO ---- */
#sobre .txt-section {
  width: 100%;
  margin-top: 10px; /*distância pedida da imagem */
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

#sobre .txt-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-top: 5px;
  color: var(--rosa-forte);
}

#sobre .txt-section p {
  margin-bottom: 20px;
}

/* ---- LISTA DE REFEIÇÕES ---- */

#sobre strong,
#alimentacao strong,
#enfermagem strong,
#como-chegar strong {
  color: var(--rosa-forte);
}

.list_refeicoes {
  margin: 20px 0;
  padding-left: 20px;
}

.list_refeicoes li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 768px) {
  #sobre .foto-section {
    height: 50vh; /* reduz para telas menores */
  }

  #sobre .txt-section {
    margin-top: 50px;
  }

  #sobre .txt-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  #sobre .foto-section {
    height: 45vh;
  }

  #sobre .txt-section {
    margin-top: 40px;
    font-size: 1rem;
  }

  #sobre .txt-section h2 {
    font-size: 1.4rem;
  }
}

/* ================= GALERIA ================= */

/* --- GRID DAS MINIATURAS --- */
.container-fotos {
  background-color: var(--rosa-pastel);
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* CENTRALIZA TUDO */
  align-items: center;
  gap: 25px; /* ESPAÇAMENTO PERFEITO */
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto; /* GARANTE CENTRALIZAÇÃO DO GRID */
  padding: 20px 0;
}

.container-fotos h2 {
  color: var(--bege-rosado);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Miniaturas */
.foto-thumb {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.foto-thumb:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .container-fotos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
  }

  .foto-thumb {
    width: 100%;
    max-width: 350px;
    height: 300px;
    margin: 0 auto;
    object-fit: cover;
  }
}

/* ================= LIGHTBOX ================= */

#lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(232, 108, 136, 0.5);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#lightboxContent {
  position: relative;
  color: #fce8e3;
  text-align: center;
  z-index: 100000;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#lightboxImg.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Spinner */
#lightboxLoading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--rosa-forte);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 0.8s linear infinite;
}

/* Botão Fechar */
#closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(232, 108, 136, 0.7);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 200001;
}

/* Botões Anterior / Próximo */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 108, 136, 0.7);
  color: white;
  border: none;
  padding: 15px 15px;
  margin-bottom: 5px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 200001;
}

#prevBtn {
  left: -30px;
}
#nextBtn {
  right: -30px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* =================== MOBILE LIGHTBOX =================== */

@media (max-width: 768px) {
  #prevBtn {
    left: 15px;
  }
  #nextBtn {
    right: 15px;
  }
  #lightboxImg {
    max-width: 95vw;
    max-height: 85vh;
  }
}

/* ================= SECTION ALIMENTAÇÃO ================= */

#alimentacao {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#alimentacao .tf-alimentacao {
  display: flex;
  flex-direction: column; /* imagem em cima, texto embaixo */
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ---- FOTO ---- */
#alimentacao .foto-section {
  width: 100%;
  height: 80vh; /* mesmo padrão da section sobre */
  overflow: hidden;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#alimentacao .foto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- TEXTO ---- */
#alimentacao .txt-section {
  width: 100%;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cinza);
}

#alimentacao .txt-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--rosa-forte);
}

#alimentacao .txt-section p {
  margin-bottom: 20px;
}

/* ---- LISTA ---- */
#alimentacao .list_refeicoes {
  margin: 20px 0;
  padding-left: 20px;
}

#alimentacao .list_refeicoes li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 768px) {
  #alimentacao .foto-section {
    height: 50vh;
  }

  #alimentacao .txt-section {
    margin-top: 50px;
  }

  #alimentacao .txt-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  #alimentacao .foto-section {
    height: 45vh;
  }

  #alimentacao .txt-section {
    margin-top: 40px;
    font-size: 1rem;
  }

  #alimentacao .txt-section h2 {
    font-size: 1.4rem;
  }
}
/* ================= SECTION CUIDADOS ================= */

#cuidados {
  width: 100%;
  background-color: var(--rosa-pastel); /* mesmo padrão da galeria */
  padding: 60px 20px;
}

#cuidados .ft-cuidados {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* ---- FOTO ---- */
#cuidados .foto-section {
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

#cuidados .foto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- TEXTO ---- */
#cuidados .txt-section {
  flex: 1;
  color: var(--bege-rosado);
  font-size: 1.05rem;
  line-height: 1.7;
}

#cuidados .txt-section h2 {
  color: var(--bege-rosado);
  margin-bottom: 20px;
  text-align: left;
}

#cuidados .txt-section p {
  margin-bottom: 16px;
  text-indent: 0;
  color: var(--bege-rosado);
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 768px) {
  #cuidados .ft-cuidados {
    flex-direction: column; /* FOTO EM CIMA / TEXTO EMBAIXO */
  }

  #cuidados .foto-section {
    width: 100%;
    height: 300px;
  }

  #cuidados .txt-section h2 {
    text-align: center;
  }
}
/* ================= SECTION ENFERMAGEM ================= */

#enfermagem {
  width: 100%;
  padding: 20px 20px;
}

/* Container principal */
#enfermagem .enfermagem {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* ---- TEXTO ---- */
#enfermagem .txt-section {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cinza);
}

#enfermagem .txt-section p {
  margin-bottom: 16px;
  text-indent: 0;
}

/* ---- FOTO ---- */
#enfermagem .foto-section {
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

#enfermagem .foto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 768px) {
  #enfermagem .enfermagem {
    flex-direction: column-reverse; /* FOTO EM CIMA / TEXTO EMBAIXO */
  }

  #enfermagem .foto-section {
    width: 100%;
    height: 300px;
  }

  #enfermagem > h2 {
    text-align: center;
  }
}
/* ================= SECTION ESTIMULAÇÃO COGNITIVA ================= */

#estimulacao-cognitiva {
  width: 100%;
  background-color: var(--rosa-pastel); /* mesma identidade de Cuidados */
  padding: 20px 20px;
}

#estimulacao-cognitiva .estimulacao-cognitiva {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* ---- FOTO ---- */
#estimulacao-cognitiva .foto-section {
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

#estimulacao-cognitiva .foto-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- TEXTO ---- */
#estimulacao-cognitiva .txt-section {
  flex: 1;
  color: var(--bege-rosado);
  font-size: 1.05rem;
  line-height: 1.7;
}

#estimulacao-cognitiva .txt-section p {
  margin-bottom: 16px;
  text-indent: 0;
  color: var(--bege-rosado);
}

/* ---- LISTA DE ATIVIDADES ---- */
#estimulacao-cognitiva .list-estimulacao {
  margin: 15px 0 20px 20px;
}

#estimulacao-cognitiva .list-estimulacao li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--bege-rosado);
}
@media (max-width: 768px) {
  #estimulacao-cognitiva .estimulacao-cognitiva {
    flex-direction: column; /* FOTO EM CIMA / TEXTO EMBAIXO */
  }

  #estimulacao-cognitiva .foto-section {
    width: 100%;
    height: 300px;
  }
}
/* ================= FORMULÁRIO CONTATO ================= */

#contato {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

#contato p {
  text-align: center;
  margin-bottom: 20px;
  text-indent: 0;
}

form#formContato {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

fieldset {
  border: 2px solid var(--rosa-pastel);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

legend {
  padding: 0 10px;
  font-weight: 600;
  color: var(--rosa-forte);
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 2px solid var(--rosa-pastel);
  background-color: var(--bege-rosado);
  color: var(--rosa-forte);
  font-family: "Inter", sans-serif;
}

/* Placeholder com a mesma identidade */
input::placeholder,
textarea::placeholder {
  color: rgba(232, 108, 136, 0.6); /* var(--rosa-forte) suavizado */
}

textarea {
  min-height: 250px;
  resize: vertical;
}

.grupo-simnao p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  text-indent: 0;
}

.grupo-simnao label {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.btn-whatsapp {
  width: 100%;
  background-color: #25d366;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.alerta-envio {
  display: none;
  background: var(--rosa-forte);
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 15px;
}
/* ================= FORMULÁRIO – SIM / NÃO ================= */
.grupo-simnao {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
} /* Linha individual */
.linha-simnao {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
} /* Texto da pergunta */
.linha-simnao span {
  min-width: 260px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cinza);
} /* Labels Sim / Não */
.linha-simnao label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  color: var(--cinza);
} /* Radio personalizado (sem quebrar acessibilidade) */
.linha-simnao input[type="radio"] {
  accent-color: var(--rosa-forte);
  cursor: pointer;
} /* ================= RESPONSIVIDADE ================= */
@media (max-width: 768px) {
  .linha-simnao {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .linha-simnao span {
    min-width: auto;
    margin-bottom: 4px;
  }
  .linha-simnao label {
    margin-left: 10px;
  }
  textarea {
    min-height: none;
    resize: vertical;
  }

  input,
  textarea {
    background-color: var(--bege-rosado);
    color: var(--rosa-forte);
  }
}
/* ================= SECTION COMO CHEGAR ================= */

#como-chegar {
  width: 100%;
  padding: 20px 20px;
  background-color: var(--bege-rosado);
}

/* Texto explicativo */
.texto-como-chegar {
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 14px;
  color: var(--cinza);
  text-indent: 0;
}

/* Container do mapa */
.mapa-container {
  width: 90vw;
  max-width: 1200px;
  height: 500px; /* conforme solicitado */
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Iframe do mapa */
.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Botões */
.botoes-mapa {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-mapa {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Google Maps */
.btn-mapa.google {
  background-color: #4285f4;
}

/* Waze */
.btn-mapa.waze {
  background-color: #33ccff;
}

.btn-mapa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 768px) {
  .mapa-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .mapa-container {
    height: 300px;
  }

  .btn-mapa {
    width: 100%;
    text-align: center;
  }
}
/* ================= ANIMAÇÃO SUAVE – COMO CHEGAR ================= */

#como-chegar {
  opacity: 0;
  transform: translateY(20px);
  animation: aparecerSuave 0.8s ease forwards;
}

@keyframes aparecerSuave {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= WHATSAPP FIXO ================= */

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fixo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-fixo svg {
  width: 28px;
  height: 28px;
  fill: #25d366;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.whatsapp-texto {
  font-size: 14px;
  text-shadow: 1px 1px 4px var(--cinza);
}

/* Mobile – apenas ícone */
@media (max-width: 1300px) {
  .whatsapp-texto {
    display: none;
  }
}
/* ================= FORMULÁRIO – FEEDBACK ================= */

.alerta-envio {
  display: none;
  background: rgba(37, 211, 102, 0.15);
  color: #1b5e20;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

input:invalid,
textarea:invalid {
  border: 2px solid #e86c88;
}

input:valid,
textarea:valid {
  border: 2px solid #e86c88;
}
/* ================= FOOTER ================= */

footer {
  background-color: var(--rosa-forte);
  padding: 30px 20px;
}

.container-footer {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  text-align: center;
}

/* ================= LOGO ================= */

.logo-footer img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

/* ================= INFO ================= */

.info-footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-footer .texto {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.info-footer a:hover {
  text-decoration: none;
}

/* Ícones */
.info-footer .size-6 {
  width: 20px;
  height: 20px;
  color: var(--bege-rosado);
  vertical-align: middle;
  margin-right: 6px;
}

/* ================= CRÉDITOS ================= */

footer .credito {
  max-width: 420px;
  font-size: xx-small;
  line-height: 1.6;
}

footer .credito p {
  margin-bottom: 10px;
  font-size: small;
  color: var(--bege-rosado);
  text-align: center;
  align-items: center;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .logo-footer img {
    margin-bottom: 15px;
  }

  .info-footer {
    margin-bottom: 20px;
  }

  footer .credito {
    margin-top: 10px;
    padding: 0 15px;
    text-align: center;
  }

  footer .credito p {
    font-size: 12px;
    line-height: 1.6;
  }
}
