
.outros-servicos {
  padding: 60px 20px;
  text-align: center;
  background: #FFF;
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(79, 155, 255, 1) 100%);
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(79, 155, 255, 1) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(79, 155, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#4F9BFF", GradientType=0);
}

.outros-servicos h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

.card-servico {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-servico img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card-servico h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.card-servico p {
  font-size: 1.2rem;
  font-style: italic;
}

.botoes-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Ambos os botões com o mesmo tamanho */
.btn-info-outros {
  flex: 1;
  /* Faz ambos ocuparem exatamente o mesmo espaço */
  padding: 13.5px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;

  display: flex;
  /* Garantir alinhamento interno */
  justify-content: center;
  /* Centraliza texto + ícone */
  align-items: center;
  gap: 10px;
  /* Espaço entre texto e ícone */
}

/* Botão PDF */
.btn-info-outros {
  background: #888;
}

.btn-info-outros:hover {
  background: #4f9bff;
}

/* Botão WhatsApp */
.btn-whats-outros {
  background: #25d366;
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;

  display: flex;
  /* ALINHAMENTO PERFEITO */
  justify-content: center;
  align-items: center;
  /* <- CENTRALIZA VERTICALMENTE */
  gap: 10px;

  line-height: 1;
  /* <- IMPEDIR DIFERENÇA ENTRE TEXTO E ÍCONE */
}

.btn-whats-outros:hover {
  background: #1ebe5a;
}

/* Garantir que o ícone não tenha espaçamento próprio */
.whatsapp-icon-outros img {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  /* <- AJUDA NO ALINHAMENTO */
  margin: 0;
  /* Garantir zero margem */
  padding: 0;
}

.video-container {
  /* Define o contêiner do vídeo para posicionamento absoluto do iframe */
  position: relative;
  width: 100%;
  /* Truque para manter a proporção 16:9 (9 / 16 * 100) */
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  /* Espaçamento entre o parágrafo e o vídeo */
}

.video-container iframe {
  /* O iframe cobre o contêiner inteiro */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  /* Opcional: bordas arredondadas no vídeo */
}

/***** SLIDER OUTROS SERVIÇOS *****/
.slider-modal-outros {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.slider-content-outros {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid #000;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.close-btn-outros {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 80px;
  right: 160px;

  background: rgba(255, 0, 0, 0.808);
  color: white;
  border: 2px solid #000;
  border-radius: 50%;

  width: 50px;
  height: 50px;
  font-size: 40px;
  font-weight: bold;

  cursor: pointer;
  z-index: 10;
}

.slider-images-outros img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

/* Setas fora do modal */
.arrow {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  color: white;
  border: 2px solid #000;
  padding: 15px;
  cursor: pointer;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  z-index: 1001;
}

.arrow:hover {
  background-color: #4f9bff;
}

.left-arrow-outros {
  left: 160px;
}

.right-arrow-outros {
  right: 160px;
}