/* ============================
   ESTILO GERAL - PARSOFT
   ============================ */

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* ============================
   HERO / BANNER PRINCIPAL
   ============================ */

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 20px;
  background: #fff;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 40px;
}

.hero-content .headline {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subheadline {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.hero-content .btn-primary {
  display: inline-block;
  background: #e00000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-content .btn-primary:hover {
  background: #b00000;
}

.hero-image {
  flex: 1 1 45%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ============================
   SERVIÇOS
   ============================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card img {
  width: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}

.card p {
  color: #555;
  font-size: 16px;
}

/* ============================
   COMO FUNCIONA
   ============================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}

.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
  display: inline-block;
  background: #e00000;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 15px;
}

/* ============================
   SOBRE A EMPRESA
   ============================ */

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

.about-text .btn-primary {
  background: #e00000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ============================
   DIFERENCIAIS
   ============================ */

.differentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diff {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.diff img {
  width: 60px;
  margin-bottom: 20px;
}

.diff h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.diff p {
  color: #555;
}

/* ============================
   CONTATO
   ============================ */

.contact {
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-form button,
.contact-form input[type="submit"] {
  background: #e00000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b00000;
}

.btn-whatsapp-large {
  display: inline-block;
  background: #e00000;
  color: #fff;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-whatsapp-large:hover {
  background: #b00000;
}

/* ============================
   RODAPÉ
   ============================ */

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: #e00000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ============================
   RESPONSIVIDADE
   ============================ */

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-image {
    margin-top: 30px;
    text-align: center;
  }

  .about {
    flex-direction: column;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-content .headline {
    font-size: 32px;
  }
}