﻿.servicos-page {
  background: radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.14), transparent 38%),
              radial-gradient(circle at 88% 80%, rgba(255, 193, 7, 0.12), transparent 40%),
              linear-gradient(145deg, #f6f6f6 0%, #efefef 100%);
  min-height: 100vh;
  padding-bottom: 60px;
}

.servicos-hero {
  max-width: 1250px;
  margin: 0 auto;
  padding: 70px 20px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.servicos-hero-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.servicos-hero-card::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4), rgba(255, 193, 7, 0));
}

.servicos-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.18);
  color: #ffc107;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.servicos-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.servicos-hero h1 span {
  color: #ffc107;
}

.servicos-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
}

.servicos-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-servico {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-servico.primary {
  background: #ffc107;
  color: #1a1a1a;
}

.btn-servico.primary:hover {
  background: #ffcf33;
  transform: translateY(-2px);
}

.btn-servico.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-servico.ghost:hover {
  border-color: #ffc107;
  color: #ffc107;
}

.servicos-side {
  display: grid;
  gap: 16px;
}

.servicos-side-card {
  border-radius: 16px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.servicos-side-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.servicos-side-card p {
  color: #545454;
  line-height: 1.7;
}

.servicos-grid {
  max-width: 1250px;
  margin: 0 auto;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.servico-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #ececec;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.11);
  border-color: #ffd75a;
}

.servico-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.17);
  color: #c28c00;
  font-size: 22px;
  margin-bottom: 14px;
}

.servico-card h4 {
  font-size: 23px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.servico-card p {
  color: #5a5a5a;
  line-height: 1.75;
  margin-bottom: 16px;
}

.servico-lista {
  list-style: none;
  display: grid;
  gap: 9px;
}

.servico-lista li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2a2a2a;
  font-weight: 600;
}

.servico-lista i {
  color: #ffc107;
}

.cta-servicos {
  max-width: 1250px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.cta-servicos-inner {
  background: linear-gradient(120deg, #ffc107 0%, #ffcf33 100%);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-servicos h3 {
  font-size: clamp(22px, 3vw, 32px);
  color: #1a1a1a;
  margin-bottom: 6px;
}

.cta-servicos p {
  color: rgba(26, 26, 26, 0.82);
  font-weight: 600;
}

.cta-whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 11px;
  padding: 13px 18px;
  font-weight: 700;
  transition: 0.25s ease;
  white-space: nowrap;
}

.cta-whats:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .servicos-hero {
    grid-template-columns: 1fr;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .cta-servicos-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

