:root {
  --navy: #12234f;
  --navy-soft: #1f3a7a;
  --sky: #19a0d5;
  --muted: #64748b;
  --line: #e6eaf0;
  --bg: #eef1f6;
  --card-bg: #ffffff;
  --whatsapp: #25d366;
  --available: #22c55e;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  min-height: 100vh;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.card__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}

.card__body {
  padding: 28px 28px 24px;
  text-align: center;
}

.brand {
  margin-bottom: 22px;
}

.brand__logo {
  display: block;
  height: 46px;
  width: auto;
  margin: 0 auto;
}

.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.avatar__circle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #e9ecf1;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.avatar__dot {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--available);
  border: 3px solid #fff;
}

.name {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--navy);
}

.role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sky);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.role::before,
.role::after {
  content: "";
  height: 1px;
  width: 20px;
  background: var(--line);
}

.tagline {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.tagline strong {
  color: var(--navy);
}

.stats {
  display: flex;
  justify-content: space-between;
  padding: 18px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.stat {
  flex: 1;
}

.stat__value {
  font-size: 21px;
  font-weight: 800;
  color: var(--sky);
}

.stat__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  line-height: 1.3;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action:active {
  transform: scale(0.98);
}

.action--primary {
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  border-color: transparent;
}

.action__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.action--primary .action__icon {
  background: rgba(255, 255, 255, 0.15);
}

.icon--whatsapp {
  background: var(--whatsapp);
}

.icon--globe {
  background: var(--navy);
}

.icon--map {
  background: var(--sky);
}

.icon--vcard {
  background: var(--navy-soft);
}

.action__text {
  flex: 1;
  min-width: 0;
}

.action__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.action--primary .action__title,
.action--primary .action__subtitle {
  color: #fff;
}

.action__subtitle {
  font-size: 12.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action__arrow {
  color: var(--muted);
  flex-shrink: 0;
}

.action--primary .action__arrow {
  color: rgba(255, 255, 255, 0.8);
}

.request {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: left;
  scroll-margin-top: 24px;
}

.request__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

.request__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.request__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.request__row {
  display: flex;
  gap: 12px;
}

.request__row .field {
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #fbfcfe;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.request__submit {
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  padding: 13px 16px;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.request__note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
  text-align: center;
}

.footer__tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer__org {
  font-size: 12.5px;
  color: var(--muted);
}

.footer__link {
  color: var(--sky);
  text-decoration: none;
  font-size: 12.5px;
}

.footer__copyright {
  font-size: 10.5px;
  color: #a3adbd;
  margin-top: 10px;
}
