/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 70px;
width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Banner */
.banner {
  background: #FFDA2D;
  text-align: center;
  padding: 60px 20px;
  color: #000;
}

.banner h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.banner .btn {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Seções */
section {
  padding: 60px 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

/* Cards de serviços */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  width: 280px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 10px;
}

/* Galeria */
.galeria .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.galeria .grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Contato */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contato input,
.contato textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.contato button {
  padding: 12px;
  background: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Rodapé */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1eaa55;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp img {
  width: 28px;
  height: 28px;
  filter: invert(1); /* deixa o ícone branco */
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-header {
  margin-left: auto;
  margin-right: 20px;
}

.telefone {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  background: #25d366;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.telefone:hover {
  background: #1ebe5b;
}
.telefone-banner {
  margin-top: 20px;
  text-align: center;
}

.telefone-banner a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  background: #25d366;
  padding: 8px 16px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
}

.telefone-banner a:hover {
  background: #18994b;
}
.icone-telefone {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1); /* transforma o ícone em branco */
}
/* ===== AJUSTES MOBILE ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
  }

  .banner h1 {
    font-size: 1.8em;
  }

  .banner .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }

  .galeria .grid {
    grid-template-columns: 1fr;
  }

  .contato form {
    width: 100%;
    padding: 0 10px;
  }

  .whatsapp {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp img {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 768px) {
  #menu {
    display: none;
  }

  #menu.active {
    display: block;
  }

  .menu-mobile {
    display: block;
    text-align: center;
    background: #000;
  }

  .menu-mobile a {
    display: block;
    padding: 10px;
    color: white;
    border-bottom: 1px solid #333;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-content button,
  .telefone-banner {
    width: 90%;
    margin: 10px auto;
  }

  .telefone-banner a {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .whatsapp-button {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .hero-content, .telefone-banner {
    padding: 0 20px;
  }
}
.telefone-banner {
  margin-top: 20px;
}
/* Menu padrão */
#menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

#menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Botão hambúrguer */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Menu Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #000;
    text-align: center;
  }

  #menu.active {
    display: block;
  }

  #menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  #menu a {
    display: block;
    padding: 10px;
  }
}
