/* ═══════════════════════════ hero.css (full-bleed) ═══════════════════════════ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 84vh, 780px);
  padding-block: 90px;
  overflow: hidden;
}

/* foto de fundo + overlay */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg,
      rgba(8,28,51,.95) 0%,
      rgba(8,28,51,.82) 30%,
      rgba(10,37,64,.55) 54%,
      rgba(10,37,64,.18) 78%,
      rgba(10,37,64,.05) 100%),
    linear-gradient(180deg, rgba(8,28,51,.30) 0%, transparent 30%, rgba(8,28,51,.25) 100%);
}

/* corações flutuando */
.hearts { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hearts span { position: absolute; bottom: -40px; color: rgba(255,140,150,.30); font-size: 22px; animation: floatUp 9s linear infinite; }
.hearts span:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 18px; }
.hearts span:nth-child(2) { left: 26%; animation-delay: 2.5s; font-size: 28px; }
.hearts span:nth-child(3) { left: 48%; animation-delay: 1.2s; font-size: 16px; }
.hearts span:nth-child(4) { left: 66%; animation-delay: 4s; font-size: 24px; }
.hearts span:nth-child(5) { left: 84%; animation-delay: 3s; font-size: 20px; }
@keyframes floatUp {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-86vh) rotate(40deg); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 640px; color: #fff; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: var(--r-pill);
  margin-bottom: 22px;
}

.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero .grad-text {
  background: linear-gradient(120deg, #ffffff 0%, #ffd2d6 60%, #ff9aa3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-sub strong { color: #fff; }

.hero-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.hero-hl { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: rgba(255,255,255,.94); }
.hero-hl-txt { flex: 1; line-height: 1.4; }
.hero-hl strong { color: #fff; }
.hero-hl-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 9px;
  font-size: 0.95rem; color: #fff;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.hero-trust {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.86rem; color: rgba(255,255,255,.8);
}
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }

@media (max-width: 760px) {
  .hero { min-height: 0; padding-block: 56px 64px; }
  .hero-media img { object-position: 64% center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(8,28,51,.78) 0%, rgba(8,28,51,.62) 45%, rgba(8,28,51,.82) 100%);
  }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-badge { justify-content: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-highlights { align-items: flex-start; max-width: 420px; margin-inline: auto; text-align: left; }
  .hero-hl { align-items: flex-start; }
  .hero-hl-ico { margin-top: 1px; }
  .hero-sub { margin-inline: auto; }
}
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
}
