/* =========================================
   PÁGINA EXCLUSIVA DE CAPTAÇÃO HIGH-TICKET
   ========================================= */

/* O Banner Original (Radial Escuro com texto dentro) */
.service-header {
  padding: 150px 10% 80px;
  text-align: center;
  background: radial-gradient(circle at center, #161b22 0%, #0d1117 100%);
  border-bottom: 1px solid #21262d;
}

.service-header h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: #255ff1; /* Dourado/Amarelo Premium */
}

.service-header p {
  font-size: 1.5rem;
  color: #8b949e;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* O layout ziguezague (Raio-X) */
.detailed-services {
  padding: 80px 10%;
  background-color: #0d1117;
}

.detailed-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.detailed-row {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #161b22;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #21262d;
}

.reverse-row {
  flex-direction: row-reverse;
}

.detailed-icon {
  flex: 1;
  display: flex;
  justify-content: center;
}

.detailed-icon i {
  font-size: 6rem;
  opacity: 0.9;
  color: #fbc531; /* Ícones em Dourado */
}

.detailed-text h3 {
  color: #c9d1d9;
  font-size: 2rem;
  margin-bottom: 20px;
}

.detailed-text {
  flex: 2;
}

.detailed-text p {
  color: #8b949e;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* A lista de vantagens */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: #c9d1d9;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.05rem;
}

.feature-list i {
  color: #fbc531; /* Checks em Dourado */
}

/* =========================================
   RESPONSIVIDADE (MOBILE) - HIGH-TICKET
   ========================================= */
@media (max-width: 768px) {
  .service-header {
    padding: 120px 5% 50px;
  }

  .service-header h1 {
    font-size: 2.5rem;
  }

  .service-header p {
    font-size: 1.1rem;
  }

  .detailed-row,
  .reverse-row {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .detailed-icon i {
    font-size: 4rem;
  }

  .feature-list li {
    justify-content: center;
    text-align: left;
  }
}
