/* ─────────────────────────────────────────────
   HERO — Background, conteúdo, CTAs, responsivo
───────────────────────────────────────────── */

#hero {
  height: 80svh;
  min-height: 720px;
  background: #A8D8EC;
  position: relative;
  overflow: hidden;
}

/* ─── BACKGROUND ─── */
#hero-parallax {
  position: absolute;
  inset: 0;
  right: 0;
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

/* ─── LAYOUT ─── */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-box {
  max-width: 540px;
  padding: 0;
}

/* ─── KICKER ─── */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.hero-kicker-line {
  width: 32px;
  height: 2px;
  background: #2c538b;
  flex-shrink: 0;
}

.hero-kicker-text {
  color: #2c538b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

/* ─── TITLE ─── */
.hero-title-wrap {
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #2c538b;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero-accent {
  color: #07a1c3;
  font-weight: 800;
}

/* ─── DESCRIPTION ─── */
.hero-desc-wrap {
  margin-bottom: 36px;
}

.hero-desc {
  color: #2c538b;
  font-size: 21px;
  line-height: 1.48;
  max-width: 475px;
  margin: 0;
  opacity: 0.96;
}

/* ─── ACTIONS ─── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #008baa;
  color: white;
  border-radius: 50px;
  padding: 15px 27px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta-primary:hover {
  background: #007892;
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 139, 170, 0.2);
  color: #0057A8;
  border-radius: 50px;
  padding: 15px 27px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(216, 234, 243, 0.7);
  backdrop-filter: blur(6px);
}
.hero-cta-secondary:hover {
  background: rgba(190, 219, 233, 0.86);
  border-color: rgba(0, 139, 170, 0.34);
}

/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 768px) {
  #hero {
    min-height: 760px;
    height: 100svh;
  }

  #hero-parallax img {
    object-position: 68% center;
  }

  #hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(210, 239, 250, 0.86) 0%,
      rgba(210, 239, 250, 0.58) 58%,
      rgba(210, 239, 250, 0.08) 100%
    );
    pointer-events: none;
  }

  .hero-box  { max-width: 100%; padding: 108px 0 60px; }
  .hero-title { font-size: 44px; line-height: 1.12; }
  .hero-desc  { font-size: 17px; max-width: 360px; }
}

/* ─── RESPONSIVE: 520px ─── */
@media (max-width: 520px) {
  #hero        { min-height: 720px; }
  .hero-shell  { padding: 0 24px; }
  .hero-box    { padding: 92px 0 44px; }
  .hero-title  { font-size: 38px; }
  .hero-kicker-text { font-size: 13px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
