/* =====================================================================
   DESIGN TOKENS — paleta bandeira argentina (azul-celeste + sol)
   ===================================================================== */
:root {
  --bg: #f4faff;
  --bg-elev: #ffffff;
  --bg-soft: #e0eef9;
  --ink: #0f2540;
  --ink-2: #45597a;
  --ink-3: #8ba1bf;
  --line: #d2e3f3;
  --line-2: #b2c8e0;

  /* Azul celeste da bandeira (mais aberto) e o azul-forte pra texto/ação */
  --celeste: #74acdf;
  --azul: #2c6fb3;
  --azul-2: #1e5fa0;

  /* Amarelo do sol */
  --sol: #fcbf49;
  --sol-2: #f9a826;

  --accent: var(--azul);
  --accent-2: var(--celeste);
  --gold: var(--sol);
  --green: #3a8865;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --shadow-sm: 0 1px 2px rgba(15, 37, 64, 0.05);
  --shadow: 0 1px 2px rgba(15, 37, 64, 0.05), 0 6px 20px rgba(15, 37, 64, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 37, 64, 0.22);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --topbar-h: 56px;
  --bottomnav-h: 64px;
  --max-w: 760px;
  --flag-h: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #0a1626;
  --bg-elev: #142340;
  --bg-soft: #1d3052;
  --ink: #e8efff;
  --ink-2: #a8bce0;
  --ink-3: #6c84a8;
  --line: #213556;
  --line-2: #2d456e;
  --celeste: #9ec5ed;
  --azul: #7ab0e0;
  --azul-2: #9ec5ed;
  --sol: #ffd166;
  --sol-2: #ffb84a;
  --accent: var(--azul);
  --accent-2: var(--celeste);
  --gold: var(--sol);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.6);
}

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

/* Fix: garantir que [hidden] esconde mesmo se a classe define display */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 36;
}

a { color: var(--accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--celeste); color: var(--ink); }

/* =====================================================================
   FAIXA BANDEIRA — fica no topo absoluto
   ===================================================================== */
.flag-strip {
  position: sticky;
  top: 0;
  z-index: 41;
  height: var(--flag-h);
  background: linear-gradient(
    180deg,
    var(--celeste) 0%, var(--celeste) 33%,
    #ffffff 33%, #ffffff 66%,
    var(--celeste) 66%, var(--celeste) 100%
  );
}

/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar {
  position: sticky;
  top: var(--flag-h);
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.topbar-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}

.sun {
  display: inline-block;
  color: var(--sol);
  font-size: 17px;
  margin-left: 2px;
  transform: translateY(-1px);
}

.brand-dates {
  display: block;
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon-btn {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--azul);
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.icon-btn:active { transform: scale(0.9); }
.icon-btn:hover { background: var(--bg-soft); }

/* =====================================================================
   SEÇÕES
   ===================================================================== */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px 8px;
  scroll-margin-top: calc(var(--topbar-h) + var(--flag-h) + 16px);
}

.section--first { padding-top: 28px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 26px;
  color: var(--ink);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--sol);
  border-radius: 2px;
  margin-top: 4px;
}

.sub-section {
  font-family: var(--serif);
  font-size: 19px;
  margin: 32px 0 12px;
  color: var(--azul);
}

.section-intro {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: -6px 0 14px;
  max-width: 50ch;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
}
.ghost-btn:hover { background: var(--bg-soft); }

.footer-spacer { height: 40px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  padding: 12px 0 8px;
}

.hero-title {
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1.05;
  margin: 0 0 10px;
  font-variation-settings: "opsz" 144;
  color: var(--azul);
  letter-spacing: -0.025em;
}

.hero-sub {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

/* =====================================================================
   NOW + PROGRESS
   ===================================================================== */
.now-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 18px 0 0;
  box-shadow: var(--shadow);
  animation: slideUp 0.4s var(--ease);
}

.now-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 2s infinite;
  flex: 0 0 10px;
}

.now-card strong {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.progress-card {
  margin-top: 24px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11.5px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

.progress-head span:last-child {
  color: var(--azul);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  font-weight: 700;
}

.progress-track {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--celeste), var(--azul));
  border-radius: 999px;
  transition: width 0.6s var(--ease);
}

/* =====================================================================
   ROTEIRO — day tabs + items
   ===================================================================== */
.day-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--flag-h) + 8px);
  z-index: 12;
  box-shadow: 0 4px 12px rgba(15, 37, 64, 0.04);
}

/* Tabs internas (sub-seções) — Restaurantes / Cafés / Bares */
.inner-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 16px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--flag-h) + 8px);
  z-index: 12;
  box-shadow: 0 4px 12px rgba(15, 37, 64, 0.04);
}

.inner-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 6px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s var(--ease);
}
.inner-tab[data-active="true"] {
  background: var(--azul);
  color: white;
  box-shadow: var(--shadow-sm);
}
.inner-tab:active { transform: scale(0.97); }

.inner-pane { display: none; }
.inner-pane[data-active="true"] {
  display: block;
  animation: fadeIn 0.3s var(--ease);
}

.day-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 6px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s var(--ease);
}
.day-tab[data-active="true"] {
  background: var(--azul);
  color: white;
  box-shadow: var(--shadow-sm);
}
.day-tab[data-active="true"] small { color: rgba(255, 255, 255, 0.75); }
.day-tab:active { transform: scale(0.97); }

.day-tab small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 2px;
}

.dia {
  display: none;
}
.dia[data-active="true"] {
  display: block;
  animation: fadeIn 0.35s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.dia-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.dia-item:last-child { border-bottom: none; }

.checkbox {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  background: var(--bg-elev);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s var(--ease);
}
.checkbox svg {
  opacity: 0;
  stroke: white;
  transition: opacity 0.2s ease;
  transform: scale(0.6);
}
.dia-item.done .checkbox {
  background: var(--green);
  border-color: var(--green);
}
.dia-item.done .checkbox svg {
  opacity: 1;
  transform: scale(1);
}
.dia-item.done .item-title,
.dia-item.done .item-desc { opacity: 0.45; }
.dia-item.done .item-title { text-decoration: line-through; }

.item-time {
  font-weight: 700;
  color: var(--azul);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  flex: 0 0 48px;
  padding-top: 2px;
  letter-spacing: 0.02em;
}

.item-body { flex: 1; min-width: 0; }

.item-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}
.dia-item.destaque .item-title { color: var(--azul); }

/* Pílula de tempo de transporte SEMPRE visível, abaixo do título */
.item-transport {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--celeste) 22%, var(--bg-elev));
  color: var(--azul-2);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 2px 9px;
  margin-top: 6px;
}
.item-transport svg { stroke-width: 2.2; }

.item-desc {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), margin-top 0.3s var(--ease);
  white-space: pre-wrap;
}
.dia-item[data-open="true"] .item-desc {
  max-height: 480px;
  margin-top: 8px;
}

.item-actions {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.dia-item[data-open="true"] .item-actions { display: flex; }

.item-extra {
  display: none;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.45;
}
.item-extra strong {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-right: 4px;
}
.dia-item[data-open="true"] .item-extra { display: block; }

/* =====================================================================
   CARDS DE LUGAR
   ===================================================================== */
.select-pill {
  display: block;
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%238ba1bf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 32px;
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lugar-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: transform 0.15s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.lugar-card:hover { border-color: var(--line-2); }
.lugar-card:active { transform: scale(0.99); }

.lugar-card.destaque {
  border-color: color-mix(in srgb, var(--azul) 50%, var(--line));
}

/* Lojas "faz questão": destaque dourado */
.lugar-card[data-tipo="compras"].destaque {
  border-color: color-mix(in srgb, var(--sol) 60%, var(--line));
  background: color-mix(in srgb, var(--sol) 5%, var(--bg-elev));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--sol) 25%, transparent);
}

.lugar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lugar-nome {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.lugar-icon { font-size: 18px; }
.lugar-star { color: var(--sol); font-size: 13px; }

.lugar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-3);
}
.lugar-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-3);
  display: inline-block;
  opacity: 0.6;
}

.reserva-pill {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.reserva-pill[data-r="confirmada"] {
  background: color-mix(in srgb, var(--green) 18%, var(--bg-elev));
  color: var(--green);
}

.closed-tag {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: color-mix(in srgb, var(--sol) 28%, var(--bg-elev));
  color: color-mix(in srgb, var(--sol) 50%, var(--ink));
  border: 1px solid color-mix(in srgb, var(--sol) 50%, var(--line));
}

.open-tag {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: color-mix(in srgb, var(--celeste) 25%, var(--bg-elev));
  color: var(--azul);
  border: 1px solid color-mix(in srgb, var(--celeste) 50%, var(--line));
}

.closed-tag-inline {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  background: color-mix(in srgb, var(--sol) 28%, var(--bg-elev));
  color: color-mix(in srgb, var(--sol) 50%, var(--ink));
}

/* =====================================================================
   BOTTOM NAV — 4 abas
   ===================================================================== */
.bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: color-mix(in srgb, var(--bg-elev) 96%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  display: flex;
  height: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  padding: 0 8px env(safe-area-inset-bottom, 0px);
  gap: 4px;
  align-items: center;
  box-shadow: 0 -4px 24px rgba(15, 37, 64, 0.06);
}

.bn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
  padding: 8px 4px;
  position: relative;
  border-radius: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s var(--ease);
}
.bn:hover { text-decoration: none; background: var(--bg-soft); }
.bn:active { transform: scale(0.94); }
.bn svg { transition: stroke-width 0.2s ease; }

/* Item ativo: fundo celeste suave, texto azul forte, ícone com stroke maior */
.bn.active {
  color: var(--azul);
  background: color-mix(in srgb, var(--celeste) 22%, transparent);
}
.bn.active svg { stroke-width: 2.4; }

/* Pontinho amarelo (sol) abaixo do label da aba ativa */
.bn.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sol);
}

/* =====================================================================
   BOTTOM SHEET — detalhe do lugar
   ===================================================================== */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 64, 0.45);
  z-index: 50;
  animation: fade 0.25s var(--ease);
  cursor: pointer;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.detail-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: var(--bg-elev);
  border-radius: 22px 22px 0 0;
  box-shadow: var(--shadow-lg);
  max-height: 86vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUpSheet 0.32s var(--ease);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Handle de arrastar / fechar — bem visível, clicável */
.detail-sheet::before {
  content: "";
  width: 44px;
  height: 5px;
  background: var(--line-2);
  border-radius: 999px;
  margin: 12px auto 4px;
  flex: 0 0 5px;
}

.detail-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul);
  border: 2px solid var(--bg-elev);
  color: white;
  z-index: 5;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 37, 64, 0.25);
  transition: background 0.15s ease, transform 0.15s var(--ease);
}
.detail-close:hover { background: var(--azul-2); }
.detail-close:active { transform: scale(0.9); }

.detail-body {
  overflow-y: auto;
  padding: 12px 20px 28px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.detail-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin: 8px 0 4px;
  padding-right: 52px;
}

.detail-meta {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.detail-section { margin-top: 14px; }

.detail-section h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin: 0 0 6px;
}

.detail-section p,
.detail-section li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

.detail-section ul {
  margin: 0;
  padding-left: 18px;
}

.detail-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.mini-btn {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mini-btn:hover { background: var(--azul); color: white; text-decoration: none; border-color: var(--azul); }
.mini-btn:active { transform: scale(0.97); }

.mini-btn--primary {
  background: var(--azul);
  color: white;
  border-color: var(--azul);
}
.mini-btn--primary:hover { background: var(--azul-2); border-color: var(--azul-2); }

/* Botão Instagram com gradient roxo/laranja sutil (cores do IG) */
.mini-btn--insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045);
  color: white;
  border-color: transparent;
}
.mini-btn--insta:hover {
  background: linear-gradient(135deg, #6d2e96, #d61818 50%, #e09c3a);
  color: white;
  border-color: transparent;
}

.detail-indicacao {
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
