/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

/* =========================
   MENU
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #ff6b00;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6b00;
}

/* MENU MOBILE */
.menu-mobile {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  height: 90vh;
  background: url("imagens/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  margin-top: 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #ff6b00;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #e85f00;
  transform: scale(1.05);
}

/* =========================
   SEÇÕES
========================= */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* SEÇÃO ESCURA */
.dark {
  background: #1f1f1f;
  color: white;
}

/* =========================
   CARDS
========================= */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 25px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 30px;
  color: #ff6b00;
  margin-bottom: 10px;
}

/* =========================
   GALERIA
========================= */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.gallery img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* =========================
   MAPA
========================= */
.mapa-container {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
}

/* =========================
   WHATSAPP FLUTUANTE
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* =========================
   RODAPÉ
========================= */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 90%;
  }
}
