: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: 50px 30px;
  background-color: var(--white);
  color: var(--black);
}

.container-cards .titulo h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  font-size: 25px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: var(--gray-light);
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  background-color: var(--hover-bg);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.card .desc {
  padding: 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  background-color: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}

.card:hover {
  background-color: var(--hover-bg);
  color: var(--hover-text);
}