/* ===============================
   SEÇÃO NOSSOS SERVIÇOS
================================= */

.servicos {
  background-color: #ffffff;
}

/* TÍTULOS */
.servicos-titulo {
  font-family: 'The Seasons', serif;
  font-size: 36px;
  color: #531345;
  margin-bottom: 10px;
}

.servicos-subtitulo {
  font-size: 16px;
  color: #555;
}

/* TEXTO DOS SERVIÇOS */
.servico-nome {
  font-size: 26px;
  color: #7a1fd6;
  margin-bottom: 15px;
}

.servico-texto {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ===============================
   IMAGENS – PADRÃO PREMIUM
================================= */

.servico-img-wrapper {
  width: 100%;
  max-width: 420px;
  height: 280px;
  margin: 0 auto;

  border-radius: 32px;
  overflow: hidden;

  background-color: #f3f3f3;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.servico-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .servico-img-wrapper {
    max-width: 100%;
    height: 220px;
    border-radius: 24px;
  }

  .servico-nome {
    font-size: 22px;
  }
}

/* ===============================
   BOTÃO CTA
================================= */

.btn-agendar {
  background-color: #7a1fd6;
  color: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-agendar:hover {
  background-color: #5e16a8;
  transform: translateY(-2px);
}


/* ===============================
   AJUSTE MODERNO DAS IMAGENS – SERVIÇOS
   (SEM ALTERAR HTML)
================================= */

/* Container visual consistente */
.servicos .col-lg-6.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Padronização REAL das imagens */
.servico-img {
  width: 100%;
  max-width: 520px;       /* todas ficam iguais */
  height: 320px;          /* altura fixa */
  object-fit: cover;      /* corta sem distorcer */
  border-radius: 28px;    /* arredondamento moderno */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito elegante ao passar o mouse */
.servico-img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Mobile */
@media (max-width: 768px) {
  .servico-img {
    max-width: 100%;
    height: 220px;
    border-radius: 22px;
  }
}
