/* ─── Variáveis / Tokens ───────────────────────────────── */
:root {
  --blue: #2a65ba;
  --yellow: #cc9f53;
  --purple: #544268;
  --light-bg: #f0f2f8;
  --text: #333;
  --white: #f4f4f4;
  --radius: 16px;
}

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

body {
  font-family: "Open Sans", sans-serif;
  background: var(--light-bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px 16px;
}

/* ─── Card principal ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

/* ─── Header ───────────────────────────────────────────── */
.card__header {
  width: 100%;
  display: block;
  line-height: 0;
}
.card__header img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Corpo ────────────────────────────────────────────── */
.card__body {
  padding: 36px 80px 32px;
}

/* Título "Olá!" */
.greeting {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: center;
}

/* ─── Footer ───────────────────────────────────────────── */
.card__footer {
  width: 100%;
  display: block;
  line-height: 0;
}
.card__footer img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Responsividade extra ─────────────────────────────── */
@media (max-width: 480px) {
  .card__body {
    padding: 28px 24px 24px;
  }
}
