/* ============================================================
   HERO — Logo centralizado + perfil Ivy abaixo (mesma seção)
   ============================================================ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--brand-900);
}

/* Background: foto de depilação */
.hero-portrait-bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/images/depilacao_hero.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.28;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42,6,16,0.90) 0%,
    rgba(74,15,26,0.78) 55%,
    rgba(42,6,16,0.88) 100%
  );
  pointer-events: none;
}

/* Decorações */
.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.hero-decor-circle {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200,169,110,0.09);
}
.hero-decor-circle--1 { width: 700px; height: 700px; top: -250px; right: -150px; }
.hero-decor-circle--2 { width: 350px; height: 350px; bottom: -100px; left: -100px; }
.hero-decor-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.18), transparent);
}
.hero-decor-line--top    { top: 50px; }
.hero-decor-line--bottom { bottom: 50px; }

/* ── Primeira tela: logo + título + CTAs + perfil ── */
.hero-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(2.5rem, 7vh, 4rem) var(--space-6) var(--space-10);
  position: relative;
  z-index: var(--z-raised);
  gap: var(--space-4);
}

.hero-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.50));
}

.hero-divider {
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--white);
}
.hero-title em { color: var(--gold-500); font-style: italic; }

.hero-description {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.60);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}

/* ── Bloco horizontal: foto + texto dentro da hero ── */
.hero-prof-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-8);
  max-width: 820px;
  width: 100%;
  margin-top: var(--space-6);
  text-align: left;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  backdrop-filter: blur(8px);
}

/* Foto quadrada com borda dourada */
.hero-prof-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-prof-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1.5px solid rgba(200,169,110,0.50);
  pointer-events: none;
}
.hero-prof-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-lg) + 10px);
  border: 1px solid rgba(200,169,110,0.22);
  pointer-events: none;
}
.hero-prof-photo {
  width: 200px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold-500);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  display: block;
}

/* Texto */
.hero-prof-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero-prof-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 0.85;
}
.hero-prof-name {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-xl), 2.2vw, var(--text-2xl));
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-prof-line {
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  border-radius: 2px;
}
.hero-prof-desc {
  font-size: var(--text-xs);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
}

/* Seta scroll para a seção do perfil (dentro da hero) */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
}
.hero-scroll-icon {
  display: block;
  width: 20px; height: 20px;
  border-right: 2px solid rgba(200,169,110,0.5);
  border-bottom: 2px solid rgba(200,169,110,0.5);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── Segunda tela dentro da hero: perfil da Ivy ── */
.hero-profile {
  position: relative;
  z-index: var(--z-raised);
  background: linear-gradient(160deg, #C8963E 0%, #A97530 50%, #C8963E 100%);
  padding: var(--space-20) var(--space-6);
}

/* Borda decorativa */
.hero-profile::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}

.hero-profile-inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.hero-profile-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Foto circular */
.hero-profile-photo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
.hero-profile-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.40);
}
.hero-profile-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-profile-photo {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: top center;
  border: 4px solid rgba(255,255,255,0.55);
  box-shadow: 0 12px 48px rgba(0,0,0,0.40);
  display: block;
}

.hero-profile-name {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.20);
}

.hero-profile-line {
  width: 50px;
  height: 1.5px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

.hero-profile-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
}

/* ── Responsivo ── */
@media (max-width: 720px) {
  .hero-prof-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-5);
    gap: var(--space-5);
  }
  .hero-prof-photo-wrap { margin: 0 auto; }
  .hero-prof-photo { width: 150px; height: 165px; }
  .hero-prof-line { margin: 0 auto; }
  .hero-prof-desc { margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-logo { width: 190px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-profile-photo-wrap,
  .hero-profile-photo { width: 200px; height: 200px; }
  .hero-profile::before { inset: 10px; }
}


/* ── Botões sociais em "Conheça a profissional" ── */
.hero-prof-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: .02em;
}
.hero-social-btn:hover { transform: translateY(-2px); }
.hero-social-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37,211,102,0.25);
}
.hero-social-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.hero-social-ig {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
  box-shadow: 0 3px 12px rgba(220,39,67,0.25);
}
.hero-social-ig:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.4); }
