/* ============================================================
   MyCenter — Link Expirado
   styles.css
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --blue-deep:   #0c4274;
  --blue-mid:    #1a6aad;
  --blue-light:  #d6e8f7;
  --blue-pale:   #edf4fb;
  --white:       #ffffff;
  --text-main:   #0c4274;
  --text-body:   #4a5568;
  --text-muted:  #a0aec0;
  --warn:        #d97706;
  --warn-bg:     #fff8ec;
  --shadow:      0 12px 48px rgba(12, 66, 116, 0.10),
                 0  4px 16px rgba(12, 66, 116, 0.06);
  --radius:      18px;
}

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


body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', system-ui, sans-serif;

  background-color: var(--white);
  background-image:
    radial-gradient(
      ellipse 70% 55% at 0% 0%,
      rgba(26, 106, 173, 0.13) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 100%,
      rgba(12, 66, 116, 0.08) 0%,
      transparent 65%
    ),
    linear-gradient(
      160deg,
      var(--blue-pale) 0%,
      var(--white)     55%,
      var(--blue-pale) 100%
    );
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 52px 44px 44px;
  max-width: 460px;
  width: 90%;
  text-align: center;


  animation: appear 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  height: 50px;
  width: auto;
  margin-bottom: 36px;
  mix-blend-mode: multiply;
}
.icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--warn-bg);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0   0 rgba(217, 119,  6, 0.0); }
  50%       { box-shadow: 0 0 0 10px rgba(217, 119,  6, 0.08); }
}

.icon-wrap svg {
  width: 34px;
  height: 34px;
}
h1 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  border-radius: 2px;
  margin: 24px auto;
  opacity: 0.55;
}
p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
}
.footer {
  margin-top: 36px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding: 32px 16px 40px;
  }
  .card {
    padding: 40px 28px 36px;
    width: 100%;
    border-radius: 14px;
  }
  .logo {
    height: 42px;
    margin-bottom: 28px;
  }
  .icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
  }
  .icon-wrap svg {
    width: 30px;
    height: 30px;
  }
  h1 {
    font-size: 1.05rem;
  }
  p {
    font-size: 0.9rem;
  }
  .footer {
    margin-top: 28px;
  }
}
@media (max-width: 380px) {
  body {
    padding: 20px 12px 32px;
  }
  .card {
    padding: 32px 20px 28px;
    border-radius: 12px;
  }
  .logo {
    height: 36px;
    margin-bottom: 24px;
  }
  .icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: 0.98rem;
  }
  .divider {
    margin: 18px auto;
  }
  .footer {
    margin-top: 22px;
    font-size: 0.7rem;
  }
}
@media (min-width: 1400px) {
  .card {
    padding: 60px 52px 52px;
    max-width: 520px;
  }

  .logo {
    height: 56px;
  }

  h1 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }

  .icon-wrap {
    animation: none;
  }
}