/* === Global === */
/* === Global === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0E0E0E;
  color: #F5F5F5;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #D4A017;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(14, 14, 14, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F5F5F5;
}

.logo span {
  color: #D4A017;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  color: #F5F5F5;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #D4A017;
}

.btn-nav {
  border: 1px solid #D4A017;
  padding: 8px 16px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #F5F5F5;
}

/* === Hero === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  background: linear-gradient(180deg, #0E0E0E 60%, #3A3A3A);
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.4;
}

.hero-content span {
  color: #D4A017;
}

.hero-content p {
  margin: 20px auto;
  max-width: 700px;
  font-weight: 300;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #D4A017;
  color: #0E0E0E;
}

.btn-primary:hover {
  background: #b88d12;
}

.btn-outline {
  border: 1px solid #D4A017;
  color: #D4A017;
}

.btn-outline:hover {
  background: #D4A017;
  color: #0E0E0E;
}

/* === Serviços === */
.servicos {
  text-align: center;
  padding: 100px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: #1A1A1A;
  border: 1px solid #3A3A3A;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  transition: 0.3s;
}

.card:hover {
  border-color: #D4A017;
  transform: translateY(-5px);
}

/* === Resultados === */
.resultados {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 100px 20px;
  background: linear-gradient(180deg, #3A3A3A, #0E0E0E);
}

.resultados h3 {
  font-size: 2.2rem;
  color: #D4A017;
}

/* === Quem Somos === */
.quem-somos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  gap: 50px;
  flex-wrap: wrap;
}

.quem-somos img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 0 20px #3A3A3A;
}

/* === CTA === */
.cta-final {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #D4A017 0%, #0E0E0E 100%);
  color: #0E0E0E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* espaçamento natural entre textos e botão */
}

.cta-final h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0E0E0E;
}

.cta-final p {
  font-size: 1.1rem;
  max-width: 600px;
  color: #0E0E0E;
  font-weight: 500;
  line-height: 1.6;
}

.cta-final .btn-primary {
  background: #0E0E0E;
  color: #D4A017;
  border: 1px solid #0E0E0E;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 10px; /* garante que o botão nunca suba sobre o texto */
}

.cta-final .btn-primary:hover {
  background: #3A3A3A;
  color: #F5F5F5;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #0E0E0E;
  border-top: 1px solid #3A3A3A;
}

/* === Responsividade === */
@media (max-width: 900px) {
  .navbar {
    padding: 20px;
  }

  .navbar ul {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0E0E0E;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: none;
    padding: 20px 0;
  }

  .navbar ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .quem-somos {
    flex-direction: column;
  }
}

/* whatsapp FAB */
.whatsapp-fab{
  position:fixed; 
  right:18px; 
  bottom:18px; 
  z-index:900;
  display:block; 
  width:62px; 
  height:62px; 
  border-radius:50%; 
  overflow:hidden;
  box-shadow:0 8px 24px rgba(2,6,23,0.18);
}
.whatsapp-fab img{
  width:100%; 
  height:100%; 
  display:block}

/* utilities */
.btn{
  display:inline-block; 
  padding:10px 18px; 
  border-radius:10px; 
  font-weight:700; 
  text-decoration:none
  }
.btn-primary{
  background:var(--orange); 
  color:white}
.btn-outline{
  border:2px solid rgba(0,0,0,0.06); 
  background:transparent; 
  color:white}

/* responsive adjustments */
@media (max-width:900px){
  .hero-inner{padding:30px 0}
  .about-grid{grid-template-columns:1fr}
  .hero-controls{bottom:12px}
  .hero-slide img{height:48vh}
}
