/* ========================= */
/* ========================= */
/* INÍCIO - HERO SERVIÇOS */
/* ========================= */
.services-page-hero {
  position: relative;
  padding: 135px 0 95px;
  text-align: center;
  background: linear-gradient(135deg, #0f2f4d 0%, #123e63 55%, #1d5885 100%);
  overflow: hidden;
}

.services-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(228, 201, 128, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at right center,
      rgba(255, 255, 255, 0.08),
      transparent 22%
    );
  pointer-events: none;
}

.services-page-hero .container {
  position: relative;
  z-index: 1;
}

.services-page-hero .section-title {
  max-width: 860px;
  margin: 0 auto;
}

.services-page-hero .section-title span {
  color: #e4c980;
}

.services-page-hero .section-title h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.services-page-hero .section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.services-page-hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.services-page-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: transparent;
}

.services-page-hero .btn-outline:hover {
  background: #ffffff;
  color: var(--azul-principal);
  border-color: #ffffff;
}
/* ====================== */
/* FIM - HERO SERVIÇOS */
/* ====================== */

/* ========================= */
/* INÍCIO - INTRO */
/* ========================= */
.services-page-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.services-page-intro-text p {
  margin-top: 15px;
  color: var(--texto-suave);
}

.services-page-intro-card {
  background: var(--fundo-section);
  padding: 28px;
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
}

.services-page-intro-card h3 {
  color: var(--azul-principal);
  margin-bottom: 15px;
}

.services-page-intro-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-page-intro-card li {
  position: relative;
  padding-left: 22px;
  color: var(--texto-suave);
}

.services-page-intro-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dourado);
  font-weight: bold;
}
/* ====================== */
/* FIM - INTRO */
/* ====================== */

/* ========================= */
/* INÍCIO - GRID SERVIÇOS */
/* ========================= */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-page-card {
  background: var(--fundo-section);
  border-radius: var(--borda-radius);
  padding: 26px;
  box-shadow: var(--sombra);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 62, 99, 0.12);
}

.service-page-number {
  font-size: 13px;
  font-weight: bold;
  color: var(--dourado);
  letter-spacing: 1px;
}

.service-page-card h3 {
  color: var(--azul-principal);
}

.service-page-card p {
  color: var(--texto-suave);
  font-size: 0.95rem;
}

.service-page-card a {
  margin-top: auto;
  font-weight: bold;
  color: var(--azul-principal);
  font-size: 0.9rem;
}

.service-page-card a:hover {
  text-decoration: underline;
}
/* ====================== */
/* FIM - GRID SERVIÇOS */
/* ====================== */

/* ========================= */
/* INÍCIO - AUDIÊNCIA */
/* ========================= */
.services-page-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.audience-item {
  background: var(--fundo-section);
  padding: 24px;
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
  transition: 0.3s ease;
}

.audience-item:hover {
  transform: translateY(-4px);
}

.audience-item h3 {
  color: var(--azul-principal);
  margin-bottom: 8px;
}

.audience-item p {
  color: var(--texto-suave);
}
/* ====================== */
/* FIM - AUDIÊNCIA */
/* ====================== */

/* ========================= */
/* INÍCIO - PROCESSO */
/* ========================= */
.services-page-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--fundo-section);
  padding: 24px;
  border-radius: var(--borda-radius);
  text-align: center;
  box-shadow: var(--sombra);
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step span {
  display: inline-block;
  font-weight: bold;
  color: var(--dourado);
  margin-bottom: 10px;
}

.process-step h3 {
  color: var(--azul-principal);
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--texto-suave);
  font-size: 0.9rem;
}
/* ====================== */
/* FIM - PROCESSO */
/* ====================== */

/* ========================= */
/* INÍCIO - CTA FINAL */
/* ========================= */
.services-page-cta {
  padding-bottom: 100px;
}

.services-page-cta-box {
  background: linear-gradient(135deg, #123e63, #215b88);
  border-radius: var(--borda-radius);
  padding: 50px 30px;
  color: #ffffff;
  text-align: center;
}

.services-page-cta-box h2 {
  color: #ffffff;
}

.services-page-cta-box p {
  color: rgba(255, 255, 255, 0.85);
}

.services-page-cta-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.services-page-cta .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: transparent;
}

.services-page-cta .btn-outline:hover {
  background: #ffffff;
  color: var(--azul-principal);
  border-color: #ffffff;
}
/* ====================== */
/* FIM - CTA FINAL */
/* ====================== */

/* ========================= */
/* INÍCIO - RESPONSIVO */
/* ========================= */
@media (max-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .services-page-audience-grid {
    grid-template-columns: 1fr;
  }

  .services-page-process-grid {
    grid-template-columns: 1fr;
  }

  .services-page-hero {
    padding-top: 100px;
  }
}
/* ====================== */
/* FIM - RESPONSIVO */
/* ====================== */
