/* ============================================
   MOBILE FIRST — PARSOFT
   Layout otimizado para telas pequenas
   ============================================ */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

/* CONTAINERS */
.container {
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}

/* TITLES */
.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

/* ============================================
   HERO — MOBILE FIRST
   ============================================ */

.hero-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
}

.hero-content .headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content .subheadline {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.hero-content .btn-primary {
  display: inline-block;
  background: #e00000;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   SERVIÇOS — MOBILE FIRST
   ============================================ */

.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card img {
  width: 50px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #555;
}

/* ============================================
   COMO FUNCIONA — MOBILE FIRST
   ============================================ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.step-number {
  background: #e00000;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-block;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================================
   SOBRE — MOBILE FIRST
   ============================================ */

.about {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.about-text .btn-primary {
  background: #e00000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ============================================
   DIFERENCIAIS — MOBILE FIRST
   ============================================ */

.differentials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.diff {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.diff img {
  width: 50px;
  margin-bottom: 15px;
}

.diff h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ============================================
   CONTATO — MOBILE FIRST
   ============================================ */

.contact {
  text-align: center;
}

.contact-form {
  width: 100%;
  margin-bottom: 30px;
}

.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 input[type="submit"] {
  background: #e00000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-whatsapp-large {
  display: inline-block;
  background: #e00000;
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ============================================
   FOOTER — MOBILE FIRST
   ============================================ */

footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #e00000;
  text-decoration: none;
}

/* ============================================
   DESKTOP BREAKPOINT
   ============================================ */

@media (min-width: 900px) {

  .hero-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 20px;
  }

  .hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .hero-content .headline {
    font-size: 42px;
  }

  .hero-image {
    flex: 1;
    text-align: right;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .about {
    flex-direction: row;
    align-items: center;
  }

  .differentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}