/* ============================================================
   Serviços — Estilos específicos das páginas de serviço
   ============================================================ */

/* ── 1. Hero ─────────────────────────────────────────────────── */
.page-title-section {
  position: relative;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.page-title-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,40,0.82) 0%, rgba(255,89,86,0.55) 100%);
}
.page-title-section .auto-container {
  position: relative;
  z-index: 1;
}
.page-title-section h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb .sep { opacity: 0.5; }
.page-breadcrumb .current { color: #ff5956; }

.service-detail-hero {
  padding: 150px 0 80px;
  text-align: center;
}
.service-detail-hero .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 36px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.service-detail-hero h1 {
  font-size: 44px;
}
.service-detail-hero .page-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 2. Intro Section ────────────────────────────────────────── */
.service-intro-section {
  padding: 80px 0;
}
.service-intro-section .intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-intro-section .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-intro-section .sec-title {
  margin-bottom: 24px;
}
.service-intro-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── 3. Features / Diferenciais ──────────────────────────────── */
.service-features-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.service-features-section .row .col-lg-6,
.service-features-section .row .col-lg-4 {
  margin-bottom: 30px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #ff5956;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* variação de cores dos ícones */
.feature-card:nth-child(2) .feature-icon { background: #0984e3; }
.feature-card:nth-child(3) .feature-icon { background: #00b894; }
.feature-card:nth-child(4) .feature-icon { background: #6c5ce7; }

/* ── 4. Como Funciona (Timeline) ─────────────────────────────── */
.service-process-section {
  padding: 80px 0;
}
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #ff5956, #6c5ce7);
  border-radius: 3px;
}
.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 48px;
}
.process-step:last-child { margin-bottom: 0; }
.process-step .step-number {
  position: absolute;
  left: 10px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff5956;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,89,86,0.35);
  z-index: 1;
}
.process-step:nth-child(2) .step-number { background: #e17055; box-shadow: 0 4px 12px rgba(225,112,85,0.35); }
.process-step:nth-child(3) .step-number { background: #0984e3; box-shadow: 0 4px 12px rgba(9,132,227,0.35); }
.process-step:nth-child(4) .step-number { background: #00b894; box-shadow: 0 4px 12px rgba(0,184,148,0.35); }
.process-step:nth-child(5) .step-number { background: #6c5ce7; box-shadow: 0 4px 12px rgba(108,92,231,0.35); }
.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── 5. Perfis Profissionais ─────────────────────────────────── */
.service-profiles-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.profile-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.profile-card:hover {
  transform: translateY(-4px);
}
.profile-card .profile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff5956;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  color: #fff;
}
.profile-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.profile-card p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* variação de cores dos perfis */
.profile-card:nth-child(2) .profile-icon { background: #6c5ce7; }
.profile-card:nth-child(3) .profile-icon { background: #0984e3; }
.profile-card:nth-child(4) .profile-icon { background: #e17055; }
.profile-card:nth-child(5) .profile-icon { background: #00b894; }

/* ── 6. Tecnologias ──────────────────────────────────────────── */
.service-tech-section {
  padding: 80px 0;
}
.tech-category {
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.tech-category:last-child { margin-bottom: 0; }
.tech-category h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tech-category h5 i {
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* cores por categoria */
.tech-category.cat-frontend h5 { color: #0984e3; }
.tech-category.cat-frontend h5 i { background: #0984e3; }
.tech-category.cat-mobile h5 { color: #6c5ce7; }
.tech-category.cat-mobile h5 i { background: #6c5ce7; }
.tech-category.cat-backend h5 { color: #ff5956; }
.tech-category.cat-backend h5 i { background: #ff5956; }
.tech-category.cat-data h5 { color: #e17055; }
.tech-category.cat-data h5 i { background: #e17055; }
.tech-category.cat-database h5 { color: #00b894; }
.tech-category.cat-database h5 i { background: #00b894; }
.tech-category.cat-cloud h5 { color: #636e72; }
.tech-category.cat-cloud h5 i { background: #636e72; }
.tech-category.cat-platforms h5 { color: #f39c12; }
.tech-category.cat-platforms h5 i { background: #f39c12; }

.tech-category .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-category .tech-tag {
  padding: 7px 16px;
  background: #f0f2f8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.tech-category .tech-tag:hover {
  background: #fff;
  border-color: #ddd;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* fundo alternado da seção */
.service-tech-section {
  background: #f8f9fc;
}

/* ── 7. Stats / Números ──────────────────────────────────────── */
.service-stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}
.stat-box {
  text-align: center;
  padding: 20px;
}
.stat-box .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #ff5956;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-box .stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* stat-box para texto (sem counter) */
.stat-box .stat-text {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ff5956;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* ── 8. CTA Section ──────────────────────────────────────────── */
.service-cta-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center 10%;
  position: relative;
  text-align: center;
}
.service-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,20,40,0.82);
}
.service-cta-section .auto-container {
  position: relative;
  z-index: 1;
}
.service-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.service-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

/* ── 9. Navegação prev/next ──────────────────────────────────── */
.service-navigation-section {
  padding: 40px 0;
  border-top: 1px solid #eee;
}
.service-nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: all 0.3s;
  text-decoration: none;
}
.service-nav-btn:hover {
  border-color: #ff5956;
  color: #ff5956;
}
.service-nav-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.service-nav-all {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}
.service-nav-all:hover { color: #ff5956; }

/* ── 10. Metodologias (Consultoria) ──────────────────────────── */
.methodology-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  text-align: center;
  transition: transform 0.3s;
}
.methodology-card:hover {
  transform: translateY(-4px);
}
.methodology-card .method-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  color: #fff;
}
.methodology-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.methodology-card .method-type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
}
.methodology-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── 11. Hunting — Posições ──────────────────────────────────── */
.positions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.position-tag {
  padding: 10px 22px;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  transition: all 0.3s;
}
.position-tag:hover {
  border-color: #ff5956;
  color: #ff5956;
}

/* ── 12. Responsivo ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .service-detail-hero h1 { font-size: 32px; }
  .service-intro-section .intro-image { margin-top: 40px; }
  .process-timeline { max-width: 100%; }
  .stat-box .stat-number { font-size: 36px; }
}
@media (max-width: 767px) {
  .service-detail-hero { padding: 120px 0 60px; }
  .service-detail-hero h1 { font-size: 26px; }
  .service-detail-hero .service-icon { width: 60px; height: 60px; font-size: 26px; }
  .service-intro-section,
  .service-features-section,
  .service-process-section,
  .service-profiles-section,
  .service-tech-section { padding: 50px 0; }
  .feature-card { padding: 24px 20px; }
  .service-cta-section h2 { font-size: 26px; }
  .service-nav-links { flex-direction: column; align-items: center; }
  .stat-box .stat-number { font-size: 32px; }
  .tech-logo { width: 46px; height: 46px; padding: 8px; }
}
