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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #7bcddd;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

.pm-wrapper {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 16px 16px 24px;
}

.pm-logo-wrapper {
  text-align: center;
  margin-bottom: 12px;
  margin-top: 8px;
}

.pm-logo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


/* HERO */
.pm-hero {
  text-align: center;
  margin-bottom: 20px;
}

.pm-logo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 12px;
}

.pm-hero h1 {
  font-size: 24px;
  margin-bottom: 4px;
}

.pm-tagline {
  font-size: 14px;
  font-weight: 500;
  color: #f97316;
  margin-bottom: 8px;
}

.pm-description {
  font-size: 14px;
  color: #2e4368;
  margin-bottom: 6px;
}

.pm-ref {
  font-size: 13px;
  color: #2e4368;
}

/* BOTONES */
.pm-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.pm-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.pm-btn-icon {
  font-size: 16px;
}

/* Variantes */
.pm-btn-outline {
  background: #fffefe;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

.pm-btn-main {
  background: #ea5c2e;
  color: #fffefe;
  box-shadow: 0 8px 18px rgba(248, 113, 22, 0.45);
}

.pm-btn-secondary {
  background: #109680;
  color: #fffefe;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.4);
}

.pm-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* FOOTER */
.pm-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #2e4368;
}
