/* =========================================================
   DJP CONVERGÊNCIA — inscrição
   Design tokens
   ========================================================= */
:root {
  --bg:          #050a0c;
  --bg-2:        #0a1418;
  --bg-3:        #0e1b20;
  --teal:        #14e0e0;
  --teal-bright: #5cf2f2;
  --teal-soft:   #1ad9d9;
  --teal-deep:   #0d6b6b;
  --teal-glow:   rgba(20, 224, 224, 0.35);
  --line:        rgba(20, 224, 224, 0.18);
  --line-strong: rgba(20, 224, 224, 0.42);
  --text:        #e8f5f5;
  --text-2:      #b8cdd0;
  --text-mute:   #6e8488;
  --danger:      #ff6b8a;
  --ok:          #7ef0b3;

  --radius:      14px;
  --radius-lg:   22px;

  --ff-display:  'Unbounded', system-ui, sans-serif;
  --ff-body:     'Manrope', system-ui, -apple-system, sans-serif;
  --ff-script:   'Caveat', cursive;

  --shadow-glow: 0 0 0 1px rgba(20,224,224,.18), 0 30px 80px -30px rgba(20,224,224,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   Background art (substituído pelas imagens enviadas)
   ========================================================= */
.bg {
  position: fixed; inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg);
}
.bg picture, .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Fallback decorativo caso as imagens não existam ainda */
.bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(20,224,224,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(20,224,224,.12), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,224,224,.08), transparent 70%);
  z-index: -1;
}
.bg-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,10,12,0) 0%, rgba(5,10,12,.55) 45%, rgba(5,10,12,.92) 80%, var(--bg) 100%),
    radial-gradient(ellipse at top, transparent 30%, rgba(5,10,12,.6) 100%);
  pointer-events: none;
}

/* =========================================================
   Page
   ========================================================= */
.page {
  width: min(720px, 100% - 2.5rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0 4rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 3rem);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  text-align: center;
  padding-top: clamp(1rem, 6vw, 3rem);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) both;
}
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 107, 107, .15);
  backdrop-filter: blur(8px);
  color: var(--teal-bright);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2.4s ease-in-out infinite;
}

.title {
  position: relative;
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(4rem, 14vw, 7rem);
  isolation: isolate;
  overflow: hidden;
  padding: 0 .5rem;
}
.title-djp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 22vw, 9rem);
  letter-spacing: -0.02em;
  color: rgba(20, 224, 224, .14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}
.title-conv {
  position: relative;
  display: inline-block;
  font-size: clamp(1.15rem, 5.4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: .12em;
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
  text-stroke: 1px var(--text);
  padding: .6rem .9rem;
  z-index: 1;
  white-space: nowrap;
  max-width: 100%;
}

.script-line {
  font-family: var(--ff-script);
  font-weight: 500;
  color: var(--teal-bright);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  margin: .6rem 0 1.75rem;
  opacity: .9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(10, 20, 24, .55);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  color: var(--text-2);
  font-size: .85rem;
  font-weight: 500;
}
.hero-pill svg { color: var(--teal); }
.hero-pill--accent {
  background: linear-gradient(135deg, rgba(20,224,224,.18), rgba(20,224,224,.05));
  border-color: var(--line-strong);
  color: var(--text);
  font-weight: 600;
}
.hero-pill--accent svg { color: var(--teal-bright); }

/* =========================================================
   Programação
   ========================================================= */
.schedule {
  background: linear-gradient(180deg, rgba(10,20,24,.7), rgba(10,20,24,.5));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.schedule::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(20,224,224,.08), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(20,224,224,.06), transparent 50%);
  pointer-events: none;
}
.schedule-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  position: relative;
}
.schedule-time {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: .25rem;
}
.schedule-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: .35rem;
}
.schedule-body h3 {
  margin: 0 0 .25rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.005em;
}
.schedule-body p {
  margin: 0;
  color: var(--text-2);
  font-size: .92rem;
}
.schedule-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 -.5rem;
}

/* =========================================================
   Stepper
   ========================================================= */
.stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.4rem, 2vw, 1rem);
}
.step {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10,20,24,.4);
  backdrop-filter: blur(8px);
  color: var(--text-mute);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(20,224,224,.08);
  color: var(--text-mute);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .7rem;
}
.step.is-active {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(20,224,224,.12);
}
.step.is-active span {
  background: var(--teal);
  color: #001012;
  box-shadow: 0 0 16px var(--teal-glow);
}
.step.is-done span {
  background: var(--teal-deep);
  color: var(--teal-bright);
}
.step.is-done span::before {
  content: '✓';
}
.step.is-done span > * { display: none; }

/* =========================================================
   Card base
   ========================================================= */
.card {
  background: linear-gradient(180deg, rgba(14,27,32,.85), rgba(10,20,24,.85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  animation: rise .7s cubic-bezier(.2,.7,.2,1) both;
}
.card::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(20,224,224,.08), transparent 40%);
}
.card-head {
  margin-bottom: 1.5rem;
  position: relative;
}
.card-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}
.card-head h2 {
  margin: 0 0 .35rem;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3.6vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.01em;
}
.card-sub {
  margin: 0;
  color: var(--text-2);
  font-size: .94rem;
}

/* =========================================================
   Form
   ========================================================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  appearance: none;
  background: rgba(5,10,12,.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  padding: .95rem 1rem;
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--text-mute); }
.field input:hover {
  border-color: var(--line-strong);
}
.field input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(20,224,224,.06);
  box-shadow: 0 0 0 4px rgba(20,224,224,.12);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .15s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn--primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: #001012;
  box-shadow: 0 8px 24px -8px var(--teal-glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #7df8f8, var(--teal-bright));
  box-shadow: 0 14px 36px -10px var(--teal-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--ghost {
  background: rgba(20,224,224,.06);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(20,224,224,.12);
  border-color: var(--teal);
}
.btn--whatsapp {
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.5);
  color: #4ade80;
}
.btn--whatsapp:hover {
  background: rgba(37,211,102,.2);
  border-color: rgba(37,211,102,.8);
}
.btn.is-loading {
  pointer-events: none;
  color: transparent !important;
}
.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  color: #001012;
}

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: .9rem;
  text-align: center;
}

/* =========================================================
   Pix
   ========================================================= */
.pix-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 600px) {
  .pix-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pix-qr { justify-self: center; }
}
.pix-qr {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 60px -10px var(--teal-glow);
}
.pix-qr img { display: block; width: 240px; height: 240px; border-radius: 6px; }
.pix-qr-amount {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #001012;
  letter-spacing: -.01em;
}

/* Chave Pix */
.pix-key { display: flex; flex-direction: column; gap: .45rem; }
.pix-key-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pix-key-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(5,10,12,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.pix-key-row:hover { border-color: var(--line-strong); }
.pix-key-row code {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: .85rem 1rem;
  font-family: 'Menlo', ui-monospace, monospace;
  font-size: .88rem;
  color: var(--text);
  word-break: break-all;
  background: transparent;
}
.pix-key-row code.is-long {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: .76rem;
  line-height: 1.4;
  padding: .7rem 1rem;
  color: var(--text-2);
}
.pix-key-copy {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 0 1rem;
  background: rgba(20,224,224,.1);
  border: none;
  border-left: 1px solid var(--line);
  color: var(--teal-bright);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.pix-key-copy:hover { background: rgba(20,224,224,.2); color: var(--text); }
.pix-key-copy.is-copied {
  background: var(--teal);
  color: #001012;
}
@media (max-width: 480px) {
  .pix-key-row { flex-direction: column; }
  .pix-key-copy {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: .7rem 1rem;
    justify-content: center;
  }
}

.pix-info { display: flex; flex-direction: column; gap: 1.1rem; }
.pix-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pix-meta > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  padding-bottom: .65rem;
  border-bottom: 1px dashed var(--line);
}
.pix-meta > div:last-child { border: none; padding: 0; }
.pix-meta dt {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pix-meta dd {
  margin: 0;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

.copy-block {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.copy-block-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.copy-block textarea {
  width: 100%;
  background: rgba(5,10,12,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--text-2);
  font-family: 'Menlo', ui-monospace, monospace;
  font-size: .78rem;
  resize: none;
  word-break: break-all;
}
.copy-block textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.pix-actions {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pix-actions .btn { width: 100%; }
@media (min-width: 480px) {
  .pix-actions { flex-direction: row-reverse; }
  .pix-actions .btn { flex: 1; }
}

/* =========================================================
   Upload (dropzone)
   ========================================================= */
.dropzone {
  position: relative;
  display: block;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  background: rgba(5,10,12,.4);
  transition: border-color .2s, background .2s;
}
.dropzone:hover, .dropzone.is-drag {
  border-color: var(--teal);
  background: rgba(20,224,224,.06);
}
.dropzone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}
.dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--text-2);
  font-size: .92rem;
}
.dropzone-inner svg { color: var(--teal); margin-bottom: .25rem; }
.dropzone-inner strong { color: var(--text); font-weight: 600; }
.dropzone-inner span { font-size: .82rem; color: var(--text-mute); }
.dropzone-file {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--teal-bright);
  font-weight: 500;
}
.dropzone-file svg { color: var(--teal); }
.dropzone.has-file .dropzone-inner { display: none; }
.dropzone.has-file .dropzone-file { display: flex; }
.dropzone.has-file {
  border-style: solid;
  border-color: var(--teal);
  background: rgba(20,224,224,.08);
}

.upload-alt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .75rem;
  margin-top: .25rem;
}
.upload-alt-line {
  text-align: center;
  font-size: .75rem;
  color: var(--text-mute);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* =========================================================
   Sucesso
   ========================================================= */
.card--done { text-align: center; }
.done-mark {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(20,224,224,.25), rgba(20,224,224,0));
  color: var(--teal-bright);
  position: relative;
}
.done-mark::before {
  content: '';
  position: absolute; inset: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  animation: ping 2s ease-in-out infinite;
}
.card--done h2 {
  margin: 0 0 .5rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.5rem;
}
.card--done p { margin: 0 0 .35rem; color: var(--text-2); }
.done-script {
  font-family: var(--ff-script);
  color: var(--teal-bright);
  font-size: 1.4rem;
  margin-top: 1rem !important;
}

/* =========================================================
   Footer
   ========================================================= */
.foot {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.foot-script {
  font-family: var(--ff-script);
  color: var(--teal-deep);
  font-size: 1.1rem;
  margin: 0;
  opacity: .8;
}

/* =========================================================
   Card transitions (between steps)
   ========================================================= */
.card[hidden] { display: none !important; }
.card.is-current { animation: rise .55s cubic-bezier(.2,.7,.2,1) both; }

/* =========================================================
   Animations
   ========================================================= */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.85); }
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ping {
  0%   { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   Mobile fine-tuning
   ========================================================= */
@media (max-width: 640px) {
  .page { width: min(720px, 100% - 1.75rem); }
  .card { padding: 1.5rem 1.25rem; border-radius: 18px; }
  .card-head { margin-bottom: 1.25rem; }
  .schedule { padding: 1.25rem 1rem; }
}

@media (max-width: 520px) {
  .kicker {
    font-size: .6rem;
    letter-spacing: .25em;
    padding: .4rem .75rem;
    margin-bottom: 1.25rem;
  }
  .script-line { margin: .4rem 0 1.25rem; font-size: 1.15rem; }

  .hero-meta { gap: .4rem; }
  .hero-pill {
    font-size: .78rem;
    padding: .45rem .7rem;
    gap: .35rem;
  }
  .hero-pill svg { width: 14px; height: 14px; }

  /* Stepper compacto: mostra só o número, esconde o texto */
  .stepper { gap: .35rem; }
  .step {
    padding: .4rem .55rem;
    font-size: 0;
    letter-spacing: 0;
    gap: 0;
  }
  .step span {
    width: 26px; height: 26px;
    font-size: .8rem;
  }

  .schedule-item { grid-template-columns: 64px 1fr; gap: .75rem; padding: .7rem 0; }
  .schedule-time { font-size: 1.2rem; padding-top: .15rem; }
  .schedule-tag { font-size: .6rem; letter-spacing: .2em; }
  .schedule-body h3 { font-size: 1rem; }
  .schedule-body p { font-size: .85rem; }

  .pix-meta dd { font-size: .9rem; }
  .pix-grid { gap: 1.25rem; }
  .pix-qr img { width: 200px; height: 200px; }

  .field input { padding: .85rem .9rem; font-size: 16px; } /* 16px evita zoom no iOS */
  .copy-block textarea { font-size: .72rem; padding: .75rem .85rem; }

  .btn { padding: .9rem 1.1rem; font-size: .9rem; }

  .foot-row {
    flex-direction: column;
    gap: .25rem;
    text-align: center;
    font-size: .7rem;
  }
}

@media (max-width: 380px) {
  .schedule-item { grid-template-columns: 56px 1fr; }
  .schedule-time { font-size: 1.1rem; }
  .title-conv { letter-spacing: .08em; padding: .5rem .6rem; }
}
