/* ==========================================================================
   PEOPLE - Recrutamento e Seleção | Agência de Estágios
   Página Minimalista Em Construção (Sem Dados de Contato)
   ========================================================================== */

:root {
  --color-navy-950: #050a14;
  --color-navy-900: #081224;
  --color-navy-850: #0d1b34;
  --color-navy-800: #122548;
  --color-gold-400: #f6c76e;
  --color-gold-500: #e5a93c;
  --color-gold-600: #d4af37;
  --color-gold-glow: rgba(229, 169, 60, 0.25);
  
  --color-slate-100: #f1f5f9;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;

  --grad-navy: radial-gradient(circle at 50% 20%, #112347 0%, #081122 55%, #040811 100%);
  --grad-gold-text: linear-gradient(120deg, #ffe9a6 0%, #e5a93c 50%, #f6c76e 100%);
  --grad-gold-border: linear-gradient(135deg, rgba(229, 169, 60, 0.5) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(212, 175, 55, 0.3) 100%);

  --font-family-base: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-family-display: 'Outfit', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-navy-950);
  background: var(--grad-navy);
  color: var(--color-slate-100);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Fundo Dinâmico com Orbes e Grade Sutil */
.bg-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  will-change: transform;
  animation: floatOrb 22s ease-in-out infinite alternate;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.3) 0%, transparent 70%);
  top: -80px;
  right: -60px;
}

.orb-2 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(26, 68, 140, 0.4) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-duration: 26s;
  animation-delay: -6s;
}

.orb-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
}

.bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 80%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 80%, transparent 100%);
}

#canvas-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 35px) scale(1.06); }
  100% { transform: translate(-20px, -25px) scale(0.96); }
}

/* ==========================================================================
   Layout Principal Centrado
   ========================================================================== */

.page-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 32px 24px;
}

/* Topo Minimalista */
.minimal-header {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(13, 27, 52, 0.7);
  border: 1px solid rgba(229, 169, 60, 0.3);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-slate-300);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--color-gold-400);
  border-radius: 50%;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--color-gold-400);
  opacity: 0.6;
  animation: pulseDot 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Conteúdo Central */
.main-content {
  width: 100%;
  max-width: 840px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* Logo Box */
.logo-box {
  background: #ffffff;
  padding: 24px 44px;
  border-radius: 22px;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(229, 169, 60, 0.25);
  border: 2px solid rgba(229, 169, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 95%;
}

.logo-box:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 25px 60px -8px rgba(0, 0, 0, 0.7), 0 0 45px rgba(229, 169, 60, 0.35);
}

.brand-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Badge Em Construção */
.construction-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid rgba(229, 169, 60, 0.35);
  border-radius: 9999px;
  color: var(--color-gold-400);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.tag-icon {
  color: var(--color-gold-300);
}

/* Títulos */
.main-headline {
  font-family: var(--font-family-display);
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.gold-gradient-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.description-text {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--color-slate-300);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   Contagem Regressiva Elegante
   ========================================================================== */

.timer-section {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 24px 28px;
  background: linear-gradient(145deg, rgba(17, 35, 71, 0.65) 0%, rgba(9, 18, 38, 0.8) 100%);
  border: 1px solid rgba(229, 169, 60, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 169, 60, 0.1);
}

.timer-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-400);
  margin-bottom: 14px;
}

.timer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.timer-number {
  font-family: var(--font-family-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.timer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--color-slate-400);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.timer-divider {
  font-family: var(--font-family-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-400);
  opacity: 0.6;
  margin-top: -14px;
}

/* ==========================================================================
   Rodapé Minimalista
   ========================================================================== */

.minimal-footer {
  text-align: center;
  padding: 16px 0 6px;
  font-size: 0.8rem;
  color: var(--color-slate-500);
  width: 100%;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */

@media (max-width: 600px) {
  .page-container {
    padding: 20px 16px;
  }

  .logo-box {
    padding: 16px 20px;
    border-radius: 16px;
  }

  .timer-section {
    padding: 18px 14px;
  }

  .timer-block {
    min-width: 52px;
  }

  .timer-number {
    font-size: 1.6rem;
  }

  .timer-divider {
    font-size: 1.3rem;
  }
}
