/* Services page custom styles */
body.servicePage {
  background: #fff;
  color: #1f1f1f;
  font: 400 14px/25px Montserrat, sans-serif;
}

/* Only constrain the tabs section — header is full width */
.serviceTabs {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}

/* Override the old simple header — now handled by style.css global + inline override */
body.servicePage > header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  background: #000;
  box-sizing: border-box;
}

body.servicePage > header img {
  width: 130px;
}

.serviceIntro {
  background: #000;
  color: #fff;
  padding: 80px 0 60px;
  text-align: left;
}

.serviceIntro h1 {
  font: 700 46px Montserrat;
  text-transform: uppercase;
  margin: 5px 0 20px;
  letter-spacing: -.03em;
  color: #fff;
}

.serviceIntro span {
  font-size: 15px;
  color: #cbd1ca;
}

.serviceTabs {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  padding-bottom: 120px;
}

.serviceTabs nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eaeaea;
  padding-right: 40px;
}

.serviceTabs nav button {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  text-align: left;
  gap: 18px;
  padding: 16px;
  border: 1px solid transparent;
  background: white;
  color: #000; /* deselected color */
  cursor: pointer;
  transition: all 0.2s;
}

.serviceTabs nav i {
  font: 42px/1 fgn;
  color: #000; /* deselected color */
  font-style: normal;
  transition: color 0.2s;
}

.serviceTabs article > i {
  font: 64px/1 fgn;
  color: #0098fc;
  font-style: normal;
}

.serviceTabs nav button.active {
  background: white;
  color: #0098fc; /* azul claro */
  border: 1px solid #c5e7ff; /* blue border on active */
}

.serviceTabs nav button.active i {
  color: #0098fc;
}

.serviceTabs nav span {
  font-weight: 400; /* making it not bold too, to match the image */
  font-size: 14px;
  color: inherit;
}

.serviceTabs article {
  padding: 35px 0;
}

.serviceTabs article > i {
  display: none;
}

.serviceTabs article h2 {
  font: 700 29px Montserrat;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  letter-spacing: -.02em;
  color: #000;
}

.serviceTabs article h2::before {
  content: "— ";
}

.serviceTabs article p {
  line-height: 1.8;
  margin: 0 0 15px;
  color: #59635e;
  font-size: 15px;
}

@media(max-width:700px) {
  .serviceTabs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .serviceIntro {
    padding-top: 40px;
  }
  .serviceTabs nav button {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 12px;
    padding: 14px 10px;
  }
  .serviceTabs nav span {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .serviceTabs article {
    min-width: 0;
  }
  .serviceTabs article h2 {
    font-size: 24px;
  }
}

.serviceCTA {
  background: #f5f5f5; /* fundo cinza */
  padding: 60px 0;
  text-align: center;
}

.serviceCTA .button {
  display: inline-block;
  background: #f4ba40; /* fundo amarelo */
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.serviceCTA .button:hover {
  background: #ffffff; /* fundo branco no hover */
  color: #1f1f1f;
}
