:root {
  --color-bg: #ffffff;
  --color-text: #262626;
  --color-text-secondary: #666666;
  --color-accent: #FFD700;
  --font-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-Destaque: "Italianno", cursive;
  --font-title: 'Pinyon Script', cursive;

}

a,
a:hover {
  text-decoration: none;
}


.texto-dif {
  -webkit-mask-image: linear-gradient(-75deg, #050505 50%, #fff8dc 50%, #d4af37 70%);
  -webkit-mask-size: 200%;
  position: relative;
  color: var(--color-bg);
  font-size: 36px;
  line-height: 30px;
  display: block;
  animation: shine 3s infinite;

}

.Animation-Title {
  position: relative;
  display: inline-block;
  font-size: 36px;
  /* Ajuste conforme necessário */
  padding-bottom: 10px;
  /* Espaço entre o texto e a borda */
}

.Animation-Title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  /* A altura máxima da borda */
  background: linear-gradient(to right,
      transparent 0%,
      #FFD700 50%,
      /* Cor dourada no meio */
      transparent 100%);
  /* A borda afina nos extremos */

}

header {
  height: auto;
  /* z-index: 1000; */
  width: 100%;
}

/* .headerTop {
    display: flex;
    background-color: #262626a6;
    padding: 25px 20px;
    color: white;
}

.headerTop div {
    width: 50%;
    text-align: center
} */

.btnTel {
  padding: 10px 15px;
  background-color: red;
  color: white;
  border-radius: 30px;
  border: none;
  font-size: 0.85em;
}

.btnTel:hover {
  cursor: pointer;
  transform: scale(0.95);
  transition: 0.3s ease;
}

:root {
  --black: #111;
  --white: #fff;
  --gray-light: #f8f8f8;
  --hover-bg: #ccc;
  --hover-text: #fff;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Helvetica Neue', sans-serif;
}

.container-cards {
  padding: 60px 30px;
  background-color: var(--white);
  color: var(--black);
}

.container-cards .titulo h3 {
  font-family: var(--font-body);
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  color: #222;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 25px;
  justify-content: center;
  /* centraliza os itens no eixo horizontal */
  align-items: center;
  /* centraliza os itens no eixo vertical */
}

.card {
  background-color: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 500px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card .desc {
  padding: 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  color: #333;
  background-color: #fff;
  font-weight: 500;
  height: 20%;
}

/* Modal refinado */
#modalImagem {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

#modalImagem img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: zoomIn 0.3s ease;
}

#fecharModalBtn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

#fecharModalBtn:hover {
  color: #ddd;
}

/* Animação */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}