.procedimento-detalhe {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.procedimento-detalhe span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #1c3d5a;
  margin-bottom: 12px;
}

.procedimento-detalhe h1 {
  font-size: 46px;
  color: #1c3d5a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.procedimento-detalhe p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
  max-width: 520px;
  word-wrap: break-word;
}

.procedimento-imagem img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.procedimento-imagem img:hover {
  transform: scale(1.05);
}

.btn-agendar {
  display: inline-block;
  padding: 14px 36px;
  background: var(--cor-btn);
  color: #fff;
  border-radius: 40px;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-agendar:hover {
  background: var(--cor-btn-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .procedimento-detalhe {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 16px 60px;
    gap: 40px;
  }

  .procedimento-detalhe span {
    font-size: 20px;
  }

  .procedimento-detalhe h1 {
    font-size: 36px;
  }

  .procedimento-detalhe p {
    font-size: 16px;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .procedimento-imagem img {
    height: 300px;
  }

  .btn-agendar {
    padding: 12px 28px;
    font-size: 14px;
  }
}
