/* === HERO === */
.hero {
  background: linear-gradient(180deg, var(--bege) 0%, var(--bege-claro) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 165, 196, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-content {
  padding-right: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azul-escuro-profundo);
  margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(107, 139, 168, 0.08);
  border-radius: 100px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.02;
  color: var(--grafite);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--azul-escuro-profundo);
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--texto);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--raio-borda);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sombra-principal);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
  border: 8px solid var(--branco);
}

.hero-img-wrap:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 100px -35px rgba(77, 107, 135, 0.45);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.06);
}

/* Otimizações para desempenho em mobile */
@media (max-width: 768px) {
  .hero::before {
    display: none; /* Desativa background heavy para performance */
  }
  
  .hero-img-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hero-img-wrap img {
    transition: transform 0.6s ease;
  }
}

@media (max-width: 640px) {
  .hero-img-wrap:hover {
    transform: none; /* Desativa hover translate para melhor performance */
  }
  
  .hero-img-wrap:hover img {
    transform: none;
  }
}

/* === SOCIAL PROOF STRIP === */
.proof-strip {
  background: var(--branco);
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-item .stars {
  color: var(--azul);
  font-size: 16px;
  letter-spacing: 2px;
}

.proof-item .text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--grafite);
}

.proof-item .author {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--texto);
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 30px;
  background: rgba(0,0,0,0.1);
}