/* ================================================
   HERO SECTION
   ================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(
    155deg,
    #ffffff 0%,
    #f8fbff 40%,
    #f0f9ff 70%,
    #e8f4ff 100%
  );
}

/* Formas decorativas de fundo */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob-1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle,
    rgba(2,132,199,0.08) 0%, transparent 70%);
}
.hero-bg-blob-2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -100px;
  background: radial-gradient(circle,
    rgba(16,185,129,0.06) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Conteúdo (Esquerda) ── */
.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  background: var(--primary-light);
  border: 1px solid var(--primary-100);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: badge-pulse 2.2s infinite;
}
@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13,148,136,0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(13,148,136,0);
  }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: italic;
  color: var(--primary);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.stat-num span { color: var(--primary); }
.stat-label {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

/* ── Imagem (Direita) ── */
.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 24px 24px 24px 40px;
}

/* Blob orgânico atrás da foto — azul → verde */
.hero-photo-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(186,230,253,0.65) 0%,   /* sky-200 */
    rgba(167,243,208,0.45) 55%,  /* emerald-200 */
    rgba(186,230,253,0.55) 100%  /* sky-200 */
  );
  border-radius: 62% 38% 55% 45% / 45% 62% 38% 55%;
  z-index: 0;
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(255,255,255,0.9);
}
.hero-photo-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Cards Flutuantes */
.hero-float-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  animation: card-float 4s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.card-tl {
  top: 48px;
  left: 8px;
  animation-delay: 0s;
}
.card-br {
  bottom: 64px;
  right: 4px;
  animation-delay: 2s;
}

.float-icon { font-size: 1.25rem; margin-bottom: 3px; }
.float-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.float-label {
  font-size: 0.67rem;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}
