/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #1f2933;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid #e5e7eb;
}

header img {
  height: 45px;
}

.top-actions a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

.instagram {
  color: #2563eb;
}

.whatsapp {
  background: #22c55e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
}

/* HERO */
.hero {
  position: relative;
  height: 75vh;
  background: url("imagens/foto5.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  color: #e5e7eb;
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.beneficios {
  margin-top: 18px;
  font-size: 14px;
  color: #d1d5db;
}

/* SERVIÇOS */
.servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 30px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.card h2 {
  margin-bottom: 10px;
}

/* GALERIA */
.galeria {
  padding: 70px 30px;
  background: #ffffff;
  text-align: center;
}

.galeria h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.grid-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
}

footer a {
  display: block;
  margin-top: 8px;
  color: #2563eb;
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero {
    height: 65vh;
  }
}