/* =============================================
   HERO — seção principal + mockup do celular
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

/* Badge "Em breve" */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #a59dff;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  animation: fadeDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

/* Headline */
.hero h1 {
  font-size: clamp(44px, 9vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #a59dff, #6c63ff, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradShift 4s ease infinite;
}

/* Subtítulo */
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 500px;
  margin: 28px auto 0;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.3s both;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--accent-glow);
}
.btn-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* Mockup celular */
.phone-wrap {
  position: relative;
  z-index: 1;
  margin: 70px auto 0;
  width: 260px;
  animation: fadeUp 1s ease 0.4s both;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}
.phone-mockup {
  width: 100%;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 16px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone-notch {
  width: 80px; height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 14px;
}
.phone-screen {
  background: var(--bg3);
  border-radius: 22px;
  overflow: hidden;
}
.phone-header {
  background: linear-gradient(135deg, #5b53e8, var(--accent));
  padding: 14px 16px 12px;
}
.phone-header p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-header strong {
  font-size: 14px;
  color: #fff;
  font-weight: 800;
}

/* Cards de vaga no mockup */
.vaga-card {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.vaga-card:last-child { border-bottom: none; }
.vaga-card:hover { background: rgba(255, 255, 255, 0.02); }

.vaga-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vaga-icon.bar  { background: rgba(108, 99, 255, 0.18); }
.vaga-icon.rest { background: rgba(245, 200, 66, 0.12); }
.vaga-icon.cafe { background: rgba(255, 107, 107, 0.12); }

.vaga-info { flex: 1; min-width: 0; }
.vaga-info p      { font-size: 10px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vaga-info strong { font-size: 12px; color: var(--text); font-weight: 700; display: block; }

.vaga-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.vaga-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}
.vaga-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag-aberto  { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.tag-urgente { background: rgba(255, 107, 107, 0.15); color: var(--red); }
