/* Hero específico para Osteopatia */
.hero-osteopatia {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 140px 0;
  margin-top: 4rem;
  position: relative;
}

.hero-osteopatia .hero-title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-osteopatia .hero-subtitle {
  font-size: var(--p-font-size);
  color: var(--white-color);
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.hero-osteopatia .hero-btn {
  background-color: var(--custom-btn-bg-color);
  color: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.hero-osteopatia .hero-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Elementos decorativos */
.hero-osteopatia .hero-shape-1,
.hero-osteopatia .hero-shape-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-osteopatia .hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--tertiary-color);
  top: -50px;
  left: -50px;
}

.hero-osteopatia .hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--custom-btn-bg-color);
  bottom: -80px;
  right: -80px;
}

/* ========================= */
/* Responsividade            */
/* ========================= */
@media (max-width: 992px) {
  .hero-osteopatia {
    padding: 100px 0;
  }
  .hero-osteopatia .hero-title {
    font-size: calc(var(--h1-font-size) - 8px);
    text-align: center;
  }
  .hero-osteopatia .hero-subtitle {
    font-size: calc(var(--p-font-size) - 2px);
    padding: 0 15px;
  }
  .hero-osteopatia .hero-shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
  }
  .hero-osteopatia .hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -40px;
  }
}

@media (max-width: 576px) {
  .hero-osteopatia {
    padding: 80px 0;
    margin-top: 2rem;
  }
  .hero-osteopatia .hero-title {
    font-size: calc(var(--h1-font-size) - 12px);
    line-height: 1.2;
  }
  .hero-osteopatia .hero-subtitle {
    font-size: calc(var(--p-font-size) - 4px);
    max-width: 100%;
    margin: 0 auto 20px auto;
  }
  .hero-osteopatia .hero-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .hero-osteopatia .hero-shape-1,
  .hero-osteopatia .hero-shape-2 {
    display: none; /* esconde os elementos decorativos em telas muito pequenas */
  }
}
