/* ---- Página de Serviços ---- */

/* Banner */
.srv-banner {
  background: linear-gradient(135deg, #0077be 0%, #005a99 55%, #003d6b 100%);
  padding: 3.5rem 5vw 3rem;
  text-align: center;
  color: #fff;
}

.srv-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.srv-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* Container */
.srv-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Headings */
.srv-heading {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 0.4rem;
}

.srv-lead {
  text-align: center;
  color: #6c757d;
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
}

/* Services section */
.srv-section {
  padding: 3.5rem 0 3rem;
  background: #f8fafc;
}

/* Cards grid */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.srv-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border-top: 3px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.11);
  border-top-color: #0077be;
}

.srv-card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
  display: block;
}

.srv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 0.6rem;
}

.srv-card > p {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0f4f8;
  padding-top: 0.9rem;
}

.srv-list li {
  font-size: 0.9rem;
  color: #4a5568;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f0f4f8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.srv-list li:last-child {
  border-bottom: none;
}

.srv-list li::before {
  content: '✓';
  color: #0077be;
  font-weight: 700;
  flex-shrink: 0;
}

/* How it works */
.srv-steps-section {
  background: #fff;
  padding: 3.5rem 0 3rem;
}

.srv-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.srv-step {
  flex: 1;
  min-width: 160px;
  max-width: 210px;
  text-align: center;
  padding: 1rem;
}

.step-num {
  width: 52px;
  height: 52px;
  background: #0077be;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(0,119,190,0.35);
}

.srv-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 0.4rem;
}

.srv-step p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.55;
  margin: 0;
}

.srv-step-arrow {
  font-size: 2.2rem;
  color: #0077be;
  opacity: 0.4;
  align-self: center;
  padding-bottom: 2.8rem;
  flex-shrink: 0;
}

/* CTA */
.srv-cta {
  background: linear-gradient(135deg, #0077be 0%, #003d6b 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
}

.srv-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.srv-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-step-arrow {
    display: none;
  }

  .srv-steps {
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }

  .srv-steps {
    flex-direction: column;
    align-items: center;
  }

  .srv-step {
    max-width: 100%;
    width: 100%;
  }
}
