/* ==================================================
                    VARIÁVEIS LOCAIS
================================================== */
:root {
  --bg-main: #050505;
  --bg-surface: #0e1014;
  --bg-card: #161a22;
  --bg-surface-elevated: #121418;
  --gold-accent: #d79a3d;
  --gold-hover: #e8b35a;
  --gold-border: rgba(215, 154, 61, 0.14);
  --gold-border-focus: rgba(215, 154, 61, 0.40);
  --text-main: #fcfcfc;
  --text-muted: #9499a0;
  --ease-out-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-pill: 9999px;
  --shadow-elevated: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================================================
                    PÁGINA INICIAL
   Taste Skill: anti-center hero, scroll-entry
   Emil Kowalski: custom easing, active states
================================================== */

/* Hero — gradiente assimétrico, padding generoso */
.hero-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 96px 0 112px;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(215, 154, 61, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(215, 154, 61, 0.05) 0%, transparent 50%),
    var(--bg-main);
  color: var(--text-main);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

/* Eyebrow — micro-label com tracking largo */
.hero-eyebrow {
  display: inline-block;
  color: var(--gold-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 600ms var(--ease-out-strong) both;
}

/* Hero title recebe animação de entrada */
.hero-section .hero-title {
  animation: fadeInUp 600ms var(--ease-out-strong) 80ms both;
}

.hero-section .hero-title span {
  color: var(--gold-accent);
}

.hero-section .hero-subtitle {
  margin: 0;
  animation: fadeInUp 600ms var(--ease-out-strong) 160ms both;
}

/* CTAs — botões pill com active scale */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 600ms var(--ease-out-strong) 240ms both;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background-color: var(--gold-accent);
  color: var(--bg-main);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  transition: background-color 250ms var(--ease-out-strong),
              transform 160ms var(--ease-out-strong);
}

.hero-cta-primary:active {
  transform: scale(0.97);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background-color: transparent;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid var(--gold-border);
  transition: border-color 250ms var(--ease-out-strong),
              color 250ms var(--ease-out-strong),
              transform 160ms var(--ease-out-strong);
}

.hero-cta-secondary:active {
  transform: scale(0.97);
}

/* Hero image panel — Double-Bezel architecture (Taste Skill) */
.hero-image-panel {
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(215, 154, 61, 0.06)
  );
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-elevated);
  animation: fadeInUp 700ms var(--ease-out-strong) 200ms both;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: calc(24px - 6px);
}

/* Hover refinado somente em dispositivos com cursor */
@media (hover: hover) and (pointer: fine) {
  .hero-cta-primary:hover {
    background-color: var(--gold-hover);
  }

  .hero-cta-secondary:hover {
    border-color: var(--gold-border-focus);
    color: var(--gold-accent);
  }
}

/* Mobile: empilha verticalmente, ajusta padding */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    justify-content: center;
  }
}
