/* ===== style.css ===== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  color: #ccc;
  font-weight: 300;
}

a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle at top left, #111 0%, #000 100%);
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.3;
  color: #fff;
}

.hero-content p {
  color: #b3b3b3;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #000;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.btn-form {
  background-color: #e50914;
  color: #fff;
}

.btn-form:hover {
  background-color: #c40811;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

/* Features */
.features {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #111;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Mockups */
.mockups {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  text-align: center;
}

.mockup-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mockup-gallery img {
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

/* Personais */
.personais {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

.personais ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.personais li {
  margin: 0.5rem 0;
  color: #ccc;
}

/* Contato */
.contato {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  align-self: center;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: #777;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image img {
    width: 240px;
    margin-top: 2rem;
  }

  .cta-buttons {
    justify-content: center;
  }
}