/* RESET BÁSICO */
* {
  margin:  0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS DE CORES */
:root {
  --primaria: #1e1e2f;
  --secundaria: #292945;
  --destaque: #4fbbd0;
  --branco: #f9f9f9;
  --cinza: #cccccc;
  --hover: #3aa9bf;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ESTILOS GERAIS */
body {
  font-family: var(--font);
  background: linear-gradient(to bottom right, #121221, #1e1e2f);
  color: var(--branco);
  line-height: 1.6;
  padding: 0;
}
  
header {
  background: var(--secundaria);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
} 

header h1 {
  font-size: 4rem; 
  color: var(--destaque);
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: var(--branco);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--destaque);
}

/* SEÇÕES */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--destaque);
  margin-bottom: 24px;
}

/* GRID DE FILHOTES */
.grid-filhotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD FILHOTE */
.filhote {
  background: var(--secundaria);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.filhote:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(79, 187, 208, 0.3);
}

.filhote img {
  width: 100%;
  height:240px; 
  object-fit: cover;
}

.detalhes {
  padding: 20px;
  text-align: center; /* CENTRALIZA O BOTÃO DENTRO DESTA DIV */
}
 
.detalhes h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--branco);
} 

.detalhes p {
  font-size: 0.95rem;
  color: var(--cinza);
  margin-bottom: 20px;
}

/* BOTÃO WHATSAPP */
.whatsapp-button {
  display: inline-block;
  background: var(--destaque);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
  margin: 0 auto; /* centraliza botão quando display inline-block */
}

.whatsapp-button:hover {
  background: var(--hover);
}

/* MAPA */ 
#mapa {
  width: 100%;
  height: 400px;
  background-color: #444;
  border-radius: 12px;
  text-align: center;
  line-height: 400px;
  color: var(--cinza);
}

/* FOOTER */
footer {
  background: var(--secundaria);
  text-align: center;
  padding: 20px;
  color: var(--cinza);
  font-size: 0.9rem;
  margin-top: 40px; 
}

/* RESPONSIVIDADE EXTRA */
@media (max-width: 768px) {   
  header h1 {
    font-size: 2rem;
  }
 
  .detalhes p {  
    font-size: 0.9rem;
  }

  .whatsapp-button {
    padding: 10px; 
    font-size: 0.9rem;
  }
}