/* ---------------------------------
   BASE / RESET
--------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  --bg-page: radial-gradient(circle at 50% 20%, rgba(255,80,0,0.18) 0%, rgba(0,0,0,0) 60%), #0d0d0d;
  --card-bg: rgba(15, 15, 15, 0.7);
  --card-border: rgba(255,204,0,0.22);
  --accent: #ffcc00;
  --text-primary: #ffffff;
  --text-dim: #a7a7a7;
  --radius-xl: 24px;
  --radius-md: 12px;
  --shadow-card: 0 30px 60px rgba(0,0,0,0.9);
  --shadow-link: 0 20px 28px rgba(0,0,0,0.9);
  --glass-bg: rgba(0,0,0,0.45);
  --glass-border: rgba(255,204,0,0.18);
  --glass-hover-bg: rgba(255,204,0,0.08);
  --glass-hover-border: rgba(255,204,0,0.55);
  --transition-fast: 0.18s ease;
}

body {
  min-height: 100vh;
  background: var(--bg-page);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
}

/* ---------------------------------
   CARD PRINCIPAL
--------------------------------- */
.card {
  width: 100%;
  max-width: 460px;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  animation: fadeUp 0.8s ease both;
}

/* ---------------------------------
   HERO COM A IMAGEM DA MARCA
   (usa a imagem enviada: back.jpg)
--------------------------------- */
.hero {
  width: 100%;
  height: 200px;
 background-image: url('./img/back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* camada escura pra dar contraste nos botões */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.8) 100%);
}

/* um filete dourado/brasa na transição pro conteúdo */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: radial-gradient(circle at 50% 0%, rgba(255,204,0,1) 0%, rgba(255,204,0,0) 70%);
  filter: drop-shadow(0 0 6px rgba(255,204,0,0.8));
  opacity: 0.9;
}

/* ---------------------------------
   LINKS DE AÇÃO
--------------------------------- */
.links-area {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 0.5rem;
  gap: 0.8rem;
}

.action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;

  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);

  box-shadow: var(--shadow-link);
  padding: 0.9rem 1rem;

  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.action-link:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  box-shadow:
    0 28px 36px rgba(0,0,0,0.95),
    0 0 16px rgba(255,204,0,0.45);
  transform: translateY(-1px) scale(1.02);
}

/* conteúdo do lado esquerdo do botão */
.left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* ícones */
.icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255,204,0,0.4));
}

/* texto do botão */
.label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text-primary);
  text-align: left;
}

/* bolinhas da direita */
.dots {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
  padding-left: 0.75rem;
  flex-shrink: 0;
}

/* ---------------------------------
   RODAPÉ
--------------------------------- */
.footer {
  border-top: 1px solid rgba(255,204,0,0.12);
  margin-top: 1rem;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
}

.footer-main {
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.footer-sub {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* ---------------------------------
   ANIMAÇÕES
--------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------------------------------
   RESPONSIVIDADE
--------------------------------- */
@media (min-width: 480px) {
  .card {
    border-radius: 28px;
  }

  .hero {
    height: 220px;
  }

  .action-link {
    padding: 1rem 1.1rem;
  }

  .label {
    font-size: 1rem;
  }
}
