html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #f5f5f5;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}


/* CABEÇALHO PREMIUM COM MENU À DIREITA */

header {
  background-color: #000;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

.header-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav .menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

nav .menu li a:hover {
  color: #c39c67;
}


.hero {
  background: url("../assets/fachada.jpg") center center / cover no-repeat;
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* escurece imagem */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}


/* BOTÕES MODERNOS E ELEGANTES */

.btn, .btn-outline {
  background-color: #c39c67; /* dourado sólido */
  color: #111;
  border: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(195, 156, 103, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}


/* Botão principal dourado */
.btn {
  background-color: #c39c67;
  color: #111;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #d4af37;
  color: #111;
  transform: scale(1.05);
}

/* Botão outline elegante */
.btn-outline {
  background-color: #c39c67;
  color: #111;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #d4af37;
  color: #000;
  transform: scale(1.05);
}

.btn-outline:hover {
  background-color: #c39c67;
  color: #fff;
  transform: scale(1.05);
}


.section {
  padding: 4rem 2rem;
}

.dark {
  background-color: #1b1b1b;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.card {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 8px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.grid ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

footer {
  background: #000;
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #c39c67;
  z-index: 1001;
  padding: 0.5rem;
}

@media (max-width: 768px) { 
    .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
    
  }

  .btn,
  .btn-outline {
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin-top: 1rem;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;


  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #000;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav .menu {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  nav .menu li {
    margin: 0.5rem 0;
  }
}
