* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
  background-color: #F0F0F0;
  color: #2D2D2D;
}

/* HERO */
.hero {
  position: relative;
  background-color: #1c1c1c;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #2D2D2D, #000);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 500px;
  width: auto;
  margin-bottom: 24px;
}

.hero h1 {
  color: #F0F0F0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}

.subtitle {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-whatsapp {
  background-color: #22c55e;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #16a34a;
}

/* DIFERENCIAIS */
.diferenciais {
  padding: 40px 24px;
}

.diferenciais-grid {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.diferencial-item .numero {
  color: #1A4FBF;
  font-size: 26px;
  font-weight: 600;
}

.diferencial-item .label {
  color: #6b6b6b;
  font-size: 12px;
  margin-top: 4px;
}

/* CONTATO */
.contato {
  background-color: #fff;
  padding: 40px 24px;
}

.contato-content {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-label {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
}

.info-valor {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 2px;
}

.mapa-wrapper {
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  margin-top: 8px;
}

/* FOOTER */
.footer {
  background-color: #2D2D2D;
  padding: 24px;
  text-align: center;
}

.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rede-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A4FBF;
  font-size: 12px;
  text-decoration: none;
}

.copyright {
  color: #777;
  font-size: 12px;
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-overlay.ativo {
  display: flex;
}

.popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 360px;
  width: 100%;
}

.popup-titulo {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  margin-bottom: 12px;
}

.popup-input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
}

.popup-input:focus {
  border-color: #1A4FBF;
}

.popup-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #d1d5db;
  cursor: not-allowed;
  transition: background-color 0.2s ease;
}

.popup-btn.ativo {
  background-color: #22c55e;
  cursor: pointer;
}

.popup-btn.ativo:hover {
  background-color: #16a34a;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .logo {
    height: 250px;
  }
}
