/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  color: #f2b705;
  font-weight: 800;
  font-size: 1.2rem;
}

/* MENU MOBILE */
.menu {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: #000;
  text-align: center;
}

.menu.open {
  display: flex;
}

.menu li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.menu a:hover {
  color: #f2b705;
}

.menu-toggle {
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  min-height: calc(100svh - 70px); /* corrige bug mobile */
  padding-top: 70px;
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("./background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* ================= BOTÕES ================= */
.btn {
  background-color: #25D366;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid #d4a017;
  color: #d4a017;
}

/* ================= SERVIÇOS ================= */
.servicos {
  background: #d4a017;
  color: #000;
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f4f1ea;
  padding: 25px;
  border-radius: 10px;
  font-weight: 600;
}

/* ================= DEPOIMENTOS ================= */
.depoimentos {
  padding: 50px 20px;
  text-align: center;
}

/* ================= POR QUE ================= */
.porque {
  background: #f4f1ea;
  color: #000;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.porque img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 10px;
}

.porque ul {
  list-style: none;
  margin-top: 20px;
}

.porque li {
  margin-bottom: 10px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(to right, #0a0a0a, #1a1a1a);
  padding: 50px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-social a {
  color: #d4a017;
  font-size: 24px;
}

.footer-copy {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

/* ================= TABLET ================= */
@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= DESKTOP ================= */
@media (min-width: 1024px) {
  .menu {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    background: transparent;
    gap: 30px;
  }

  .menu-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .porque {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }
}
.mapa{
padding:50px 20px;
text-align:center;
background:#111;
}

.mapa h2{
margin-bottom:25px;
}

.mapa iframe{
max-width:900px;
width:100%;
border-radius:10px;
}

.whatsapp-float{
position: fixed;
bottom: 25px;
right: 25px;
width: 60px;
height: 60px;
background: #25D366;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
text-decoration: none;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
z-index: 999;
transition: transform 0.2s ease;
}

.whatsapp-float:hover{
transform: scale(1.1);
}