/* ==========================================================================
   ACOLHIMENTO & ORAÇÃO - HERO SECTION STYLES
   ========================================================================== */

.hero {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 1.5rem;
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem) !important;
    padding-bottom: 2rem;
  }
}

/* Decorative background circles */
.hero::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 127, 99, 0.08) 0%, rgba(250, 248, 244, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title .highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

/* Floating decorative green ring accent matching input image */
.hero-deco-ring {
  position: absolute;
  top: -20px;
  left: 45%;
  width: 32px;
  height: 32px;
  border: 3px solid var(--accent-olive);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  animation: floatRing 4s ease-in-out infinite alternate;
}

@keyframes floatRing {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(15deg); }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45, 75, 39, 0.12);
  border: 6px solid var(--bg-white);
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(45, 75, 39, 0.16);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Parallax subtle transform class */
.parallax-layer {
  transition: transform 0.1s cubic-bezier(0,0,0.2,1);
}
