/* GoCash Brand Fonts */
@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Brand Colors */
:root {
  --gocash-blue: #001491;
  --gocash-cyan: #00BEF1;
  --gocash-gray: #F5F7FA;
  --gocash-dark: #0D1B3D;
  --gocash-white: #FFFFFF;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Gordita', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--gocash-dark);
  background-color: var(--gocash-gray);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Layout */
.page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.card {
  background: var(--gocash-white);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 20, 145, 0.08);
  text-align: center;
}

/* Logo */
.logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
}

.logo-small {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Typography */
h1 {
  font-family: 'Gordita', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gocash-blue);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

h2 {
  font-family: 'Gordita', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gocash-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

h3 {
  font-family: 'Gordita', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gocash-dark);
  margin-bottom: 0.5rem;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-light {
  font-weight: 300;
  color: #718096;
  font-size: 0.9rem;
}

.text-accent {
  color: var(--gocash-cyan);
}

.text-blue {
  color: var(--gocash-blue);
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gocash-cyan);
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* Badge / Pill */
.badge {
  display: inline-block;
  background: var(--gocash-cyan);
  color: var(--gocash-white);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Construction animation */
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gocash-cyan);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Tarjeta info list */
.info-list {
  text-align: left;
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #EDF2F7;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  font-size: 0.85rem;
  color: #718096;
  min-width: 110px;
  flex-shrink: 0;
}

.info-value {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gocash-dark);
}

/* Footer */
.footer {
  margin-top: 2rem;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: #A0AEC0;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 540px) {
  .card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo {
    width: 150px;
  }
}

/* Icon decorative */
.icon-construction {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Status bar */
.status-bar {
  background: var(--gocash-blue);
  width: 100%;
  height: 4px;
  border-radius: 1.25rem 1.25rem 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.card-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}
