/* Estilos adicionais para a seção de serviços */
/* Seção de apresentação dos serviços */
.secao_apresentacao {
  background: linear-gradient(to bottom, var(--cor-azul-claro, #e3f2fd), var(--cor-fundo)); /* Azul claro para fundo */
  padding: 60px 20px;
  text-align: center;
}

.container_texto_apresentacao {
  max-width: 1000px;
  margin: 0 auto;
}

.container_texto_apresentacao h1 {
  font-size: 32px;
  color: var(--cor-primaria); /* Azul Serenidade */
  margin-bottom: 16px;
  font-weight: 700;
}

.container_texto_apresentacao p {
  font-size: 18px;
  color: var(--cor-texto-claro, #555); /* Cinza Escuro */
  margin-bottom: 40px;
}

/* Lista de serviços */
.servicos-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card de serviço */
.servico-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* ou defina uma altura fixa como 420px */
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px 18px;
  max-width: 280px;
  flex: 1 1 240px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icone_whatsapp_container {
  margin-top: auto;
}

.servico-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.servico-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.servico-item h2 {
  font-size: 20px;
  color: var(--cor-secundaria); /* Rosa Encanto */
  margin-bottom: 10px;
  font-weight: 600;
}

.servico-item p {
  font-size: 15px;
  color: var(--cor-texto);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Botão WhatsApp */
.icone_whatsapp_servicos {
    margin-top: 20px;
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: block;
    object-fit: contain; /* Garante que a imagem não estique */
    transition: transform 0.2s;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
}

/* Estilo do botão Reserve Agora */
.botao_reserva {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25D366; /* Cor do WhatsApp */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.botao_reserva img {
    width: 24px;
    height: 24px;
}

.botao_reserva:hover {
    background: #128C7E; /* Tom mais escuro ao passar o mouse */
    transform: scale(1.05);
}







/* Responsividade */
@media (max-width: 768px) {
  .servicos-lista {
    flex-direction: column;
    align-items: center;
  }

  .servico-item {
    max-width: 100%;
  }

  .container_texto_apresentacao h1 {
    font-size: 26px;
  }

  .container_texto_apresentacao p {
    font-size: 16px;
  }
}