/* ============================================================
   PAGE BANNER — Cabeçalhos de páginas internas e banners de imagem
   ============================================================ */

/* ── Page Hero: Cabeçalho com gradiente para páginas internas ── */
.page-hero {
  background: var(--gradient-hero-full);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(2,226,109,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(30,126,198,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 226, 109, 0.15);
  color: var(--verde-vibrante);
  border: 1px solid rgba(2, 226, 109, 0.3);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero__title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}


/* ── Image Banner: mesmo estilo do hero da home ── */
.image-banner {
  width: 100%;
  background: var(--cinza-claro);
  padding: 36px 24px 0;
}

.image-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.image-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(10, 61, 46, 0.2);
  object-fit: cover;
}


/* ── CTA Section: faixa de chamada para ação ── */
.cta-section {
  background: var(--gradient-hero-full);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(2,226,109,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--azul-escuro);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-height: 48px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
