@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@300;400;500&display=swap');

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

body {
  background: #0d0d0d;
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

/* ── FUNDO ── */
.ss-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,163,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,163,106,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.ss-glow {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(212,163,106,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── LOGO ── */
.ss-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.ss-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c9954a, #e8c17a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #f0e6d3;
  letter-spacing: -0.5px;
}

.ss-logo-text span {
  color: #d4a366;
}

.ss-slogan {
  font-size: 13px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* ── CARD ── */
.ss-card {
  width: 100%;
  max-width: 400px;
  background: #161616;
  border: 0.5px solid #2a2a2a;
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  z-index: 1;
}

/* ── INPUTS ── */
.ss-input {
  width: 100%;
  background: #0d0d0d;
  border: 0.5px solid #2a2a2a;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.ss-input:focus {
  border-color: #d4a366;
}

.ss-input::placeholder {
  color: #555;
}

/* ── BOTÃO PRINCIPAL ── */
.ss-cta {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #c9954a, #e8c17a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
  letter-spacing: 0.2px;
}

.ss-cta:hover {
  opacity: 0.85;
}

/* ── LABEL ── */
.ss-label {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}

/* ── DIVISOR ── */
.ss-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.ss-divider-line {
  flex: 1;
  height: 0.5px;
  background: #222;
}

.ss-divider span {
  font-size: 11px;
  color: #444;
}

/* ── LINK ── */
.ss-link {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 14px;
}

.ss-link a {
  color: #d4a366;
  text-decoration: none;
  cursor: pointer;
}

/* ── NAV DOTS ── */
.nav-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a2a2a;
  transition: all 0.3s;
}

.dot.active {
  background: #d4a366;
  width: 18px;
  border-radius: 3px;
}
