body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  height: 100%;
}

.hero {
  position: relative;
  background: url("assets/background.jpg") no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.content {
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

.content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.content p {
  font-size: 17px;
  color: #ddd;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
}

.atom-btn {
  display: inline-block;
  background-color: #637cf7;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
}

.form-box {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.form-box h2 {
  margin-top: 0;
  font-size: 22px;
}

.form-box p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  font-size: 14px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px 10px 10px 36px;
  border: none;
  border-radius: 6px;
  background: #2b2b2b;
  color: white;
  font-size: 15px;
  box-sizing: border-box;
}

.input-group textarea {
  height: 80px;
  resize: none;
}

.send-btn {
  width: 100%;
  padding: 12px;
  background: #ffc107;
  border: none;
  border-radius: 6px;
  color: black;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.send-btn:hover {
  background: #e0a800;
}


footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 2;
  text-align: center;
  color: #aaa;
}

.socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 16px;
}

.socials i {
  font-size: 20px;
  color: #ccc;
}
