:root {
  --brand-primary: #062f35;
  --brand-secondary: #de5126;
  --flag-green: #00996e;
  --gray-4: #323446;
  --gray-3: #74758a;
  --gray-2: #a7a8b4;
  --gray-1: #ececef;
  --orange: #ff5722;
  --white: #ffffff;
  color-scheme: light;
  font-family: Lato, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

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

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

body {
  margin: 0;
  background: #fff;
  color: var(--gray-3);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: calc(164px + env(safe-area-inset-bottom));
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 4px 18px #0003;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding-bottom: 28px;
}

.hero {
  position: relative;
  height: 328px;
  overflow: hidden;
  background: linear-gradient(135deg, #061c20, #000);
}

.slides,
.slide,
.slide img {
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .35s ease, transform .5s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.slide img.is-broken {
  opacity: 0;
}

.hero::before {
  content: "RAM 3500 LONGHORN";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #ffffffd9;
  font-size: clamp(25px, 5vw, 42px);
  font-weight: 900;
  text-align: center;
}

.hero-gradient {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 116px;
  background: linear-gradient(to top, #000, transparent);
  pointer-events: none;
}

.circle-button,
.carousel-arrow {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.circle-button:focus-visible,
.carousel-arrow:focus-visible,
.dot:focus-visible,
.pill-button:focus-visible,
.quick-option:focus-visible,
.quantity-controls button:focus-visible,
.buy-button:focus-visible,
.bottom-nav a:focus-visible,
.regulation-modal button:focus-visible {
  outline: 3px solid #33cf93;
  outline-offset: 3px;
}

.hero-back {
  top: 40px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f9fafb;
  color: #4b5563;
  box-shadow: 0 2px 10px #0002;
}

.hero-back svg {
  width: 28px;
  height: 28px;
}

.carousel-arrow {
  top: 40px;
  bottom: 76px;
  width: 30px;
  background: transparent;
  color: #fff;
  transition: background-color .2s ease;
}

.carousel-arrow:hover {
  background: #0002;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.3;
}

.carousel-prev {
  left: 0;
  border-radius: 0 999px 999px 0;
}

.carousel-next {
  right: 0;
  border-radius: 999px 0 0 999px;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 16px;
  z-index: 5;
  display: flex;
  gap: 4px;
}

.dot {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dot::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background: var(--gray-3);
  transition: transform .2s ease, background-color .2s ease;
}

.dot.is-active::after {
  background: var(--brand-secondary);
  transform: scale(1.15);
}

.hero-countdown {
  position: absolute;
  right: 24px;
  bottom: 29px;
  z-index: 5;
  color: #fff;
  text-align: right;
  line-height: 1.15;
}

.hero-countdown span {
  display: block;
  font-size: 14px;
}

.hero-countdown strong {
  color: var(--flag-green);
  font-size: 17px;
}

.campaign-card {
  position: relative;
  z-index: 10;
  width: calc(100% - 32px);
  min-height: 80px;
  margin: -28px auto 0;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px #0000003d;
}

.campaign-card h1 {
  margin: 0;
  color: var(--gray-4);
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
}

.campaign-card p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 1px 0 0;
  color: var(--flag-green);
  font-size: 14px;
}

.campaign-card svg {
  width: 16px;
  height: 16px;
}

.content-padding {
  padding: 0 16px 44px;
}

.description-area {
  margin-top: 24px;
}

.description-panel {
  overflow: hidden;
  color: var(--gray-3);
  font-size: 14px;
  animation: description-open .3s ease;
}

.description-panel p {
  margin: 0 0 12px;
}

@keyframes description-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.description-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pill-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.pill-button:hover {
  background: #f9fafb;
}

.pill-button svg {
  width: 19px;
  height: 19px;
  transition: transform .25s ease;
}

.pill-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pill-green {
  color: #22c55e;
}

.pill-green:hover {
  background: #f0fdf4;
}

.promo-card {
  position: relative;
  display: grid;
  min-height: 116px;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 20px 20px 30px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 15px -3px #0001, 0 4px 6px -4px #0001;
}

.promo-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff21;
}

.promo-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffad80;
  stroke: #ffad80;
}

.promo-copy span {
  display: table;
  margin-bottom: 4px;
  padding: 1px 8px;
  border-radius: 999px;
  background: #ffffff24;
  font-size: 12px;
  font-weight: 900;
  line-height: 19px;
}

.promo-copy strong {
  display: block;
  font-size: 15px;
  line-height: 20px;
}

.promo-countdown {
  white-space: nowrap;
  font-size: 25px;
  line-height: 1;
}

.promo-progress {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #d1d5db;
}

.promo-progress span {
  display: block;
  width: 32%;
  height: 100%;
  border-radius: inherit;
  background: #61d49e;
  animation: progress-pulse 2.2s ease-in-out infinite alternate;
}

@keyframes progress-pulse {
  to { width: 36%; }
}

.unit-label {
  margin: 0;
  color: var(--gray-3);
  font-size: 16px;
}

.unit-price {
  margin: 0 0 22px;
  color: #16a34a;
  font-size: 26px;
  font-weight: 900;
}

.unit-price small {
  font-size: 12px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--gray-3);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.section-divider::before,
.section-divider::after {
  content: "";
  height: 4px;
  flex: 1;
  background: linear-gradient(90deg, #fff, var(--gray-2));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--gray-2), #fff);
}

.quick-grid {
  display: grid;
  max-width: 360px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 24px;
}

.quick-option {
  position: relative;
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  border: 1px solid #22c55e;
  border-radius: 8px;
  background: #d1d5dbdb;
  color: #14532d;
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.quick-option:hover,
.quick-option.is-selected {
  background: #bbf7d0e6;
  box-shadow: inset 0 0 0 1px #14532d1a;
}

.quick-option:active {
  transform: scale(.98);
}

.quick-option strong {
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
}

.quick-option span {
  font-size: 12px;
}

.quick-option em {
  position: absolute;
  top: -9px;
  left: 50%;
  padding: 1px 6px;
  border-radius: 3px;
  background: #86efac;
  color: #15803d;
  font-size: 10px;
  font-style: normal;
  white-space: nowrap;
  transform: translateX(-50%);
}

.quantity-block {
  margin-top: 6px;
}

.quantity-block h2 {
  margin: 0;
  color: var(--gray-4);
  font-size: 18px;
  font-weight: 900;
  line-height: 26px;
}

.quantity-block > p {
  margin: 1px 0 7px;
  font-size: 12px;
}

input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 8px 0 17px;
  border-radius: 999px;
  accent-color: #22c55e;
  cursor: pointer;
}

.quantity-controls {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 16px;
}

.quantity-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #22c55e;
  border-radius: 8px;
  background: #fff;
  color: #22c55e;
  cursor: pointer;
}

.quantity-controls button:hover {
  background: #f0fdf4;
}

.quantity-controls button:disabled {
  border-color: #d1d5db;
  color: #d1d5db;
  cursor: not-allowed;
}

.quantity-controls svg {
  width: 24px;
  height: 24px;
}

.quantity-summary {
  text-align: center;
}

.quantity-summary > span {
  display: block;
  font-size: 11px;
}

.quantity-summary div {
  color: var(--gray-4);
  font-size: 16px;
}

.quantity-summary strong {
  font-size: 18px;
}

.quantity-summary small {
  margin-left: 5px;
  font-size: 12px;
}

.quantity-summary b {
  color: var(--flag-green);
  font-size: 24px;
}

.instant-prizes {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-1);
}

.instant-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.instant-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange);
}

.instant-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.instant-heading h2 {
  margin: 0;
  color: var(--gray-4);
  font-size: 18px;
  line-height: 24px;
}

.instant-heading p {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 18px;
}

.prize-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.prize-list li {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
  font-size: 13px;
}

.prize-list strong {
  color: var(--gray-4);
  font-size: 12px;
}

.site-footer {
  padding: 24px 16px 210px;
  background: var(--brand-primary);
  color: #cbd5d6;
}

.footer-inner {
  max-width: 768px;
  margin: 0 auto;
}

.footer-banner {
  display: block;
  width: min(300px, 100%);
  margin: 0 auto 18px;
}

.footer-banner img {
  display: block;
  width: 100%;
  max-height: 158px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
}

.footer-inner a {
  color: #fff;
}

.purchase-dock {
  position: fixed;
  right: 0;
  bottom: calc(79px + env(safe-area-inset-bottom));
  left: 0;
  z-index: 40;
  padding: 0 14px 10px;
  pointer-events: none;
}

.purchase-dock-inner {
  width: 100%;
  max-width: 736px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fffffff7;
  box-shadow: 0 8px 22px #0000002b;
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.dock-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 8px;
  color: var(--gray-4);
}

.dock-top div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.dock-top span {
  color: var(--gray-3);
  font-size: 11px;
}

.dock-top strong {
  font-size: 17px;
}

.dock-top b {
  color: var(--flag-green);
  font-size: 19px;
}

.buy-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a13, #ff7a1a);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: filter .2s ease, transform .15s ease;
}

.buy-button:hover {
  filter: brightness(.96);
}

.buy-button:active {
  transform: scale(.995);
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 49;
  height: calc(79px + env(safe-area-inset-bottom));
  border-top: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 -4px 16px #0000000c;
}

.bottom-nav-inner {
  display: grid;
  max-width: 384px;
  height: 79px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 0 24px;
}

.bottom-nav a {
  display: flex;
  min-width: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--gray-2);
  text-decoration: none;
  transition: color .2s ease;
}

.bottom-nav a:hover {
  color: var(--gray-3);
}

.bottom-nav a.active {
  color: var(--brand-secondary);
}

.bottom-nav svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
}

.bottom-nav span {
  font-size: 12px;
  line-height: 16px;
}

.regulation-modal {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 30px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: var(--gray-3);
  box-shadow: 0 22px 60px #0005;
}

.regulation-modal::backdrop {
  background: #0008;
  backdrop-filter: blur(2px);
}

.modal-card {
  display: flex;
  max-height: min(760px, calc(100dvh - 30px));
  flex-direction: column;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.modal-head h2 {
  margin: 0;
  color: #15803d;
  font-size: 20px;
  line-height: 26px;
}

.modal-head button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #4b5563;
  cursor: pointer;
}

.modal-head svg {
  width: 22px;
  height: 22px;
}

.modal-content {
  overflow-y: auto;
  padding: 16px 20px 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overscroll-behavior: contain;
}

.modal-content p,
.modal-content ul {
  margin: 0 0 14px;
}

.modal-content h3 {
  margin: 18px 0 7px;
  color: var(--gray-4);
  font-size: 15px;
}

.modal-content ul {
  padding-left: 22px;
}

.modal-close {
  min-height: 42px;
  margin: 12px 20px 18px;
  border: 0;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.toast {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 24px #0003;
  font-size: 14px;
  opacity: 0;
  transform: translate(-50%, -16px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .hero {
    height: clamp(270px, 84vw, 328px);
  }

  .campaign-card {
    margin-top: -26px;
  }

  .promo-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 16px 35px;
  }

  .promo-icon {
    width: 48px;
    height: 48px;
  }

  .promo-copy strong {
    font-size: 13px;
    line-height: 17px;
  }

  .promo-countdown {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: 23px;
  }

  .promo-progress {
    right: 16px;
    bottom: 17px;
    left: 16px;
  }

  .prize-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: calc(174px + env(safe-area-inset-bottom));
  }

  .hero-back {
    top: 20px;
  }

  .hero-countdown {
    right: 16px;
  }

  .campaign-card h1 {
    font-size: 17px;
  }

  .description-actions {
    gap: 8px;
  }

  .pill-button {
    padding: 6px 10px;
    font-size: 13px;
  }

  .quick-grid {
    max-width: none;
  }

  .quantity-controls {
    gap: 8px;
  }

  .quantity-summary small {
    display: none;
  }

  .dock-top {
    justify-content: space-between;
    gap: 8px;
  }

  .dock-top div {
    display: block;
    text-align: center;
  }

  .dock-top span {
    display: block;
  }

  .bottom-nav-inner {
    gap: 4px;
    padding: 0 10px;
  }

  .bottom-nav a {
    min-width: 0;
  }

  .bottom-nav span {
    font-size: 11px;
  }

  .modal-head h2 {
    font-size: 17px;
  }
}

/* Popups do fluxo original */
.flow-dialog {
  width: min(512px, calc(100% - 44px));
  max-height: calc(100vh - 48px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: #394154;
  box-shadow: 0 12px 28px #10182824;
}

.flow-dialog::backdrop {
  background: #edf0f3d9;
  backdrop-filter: blur(1.5px);
}

.login-dialog {
  min-height: 520px;
}

.login-top-strip {
  height: 20px;
  background: #f1f2f4;
}

.login-dialog-content {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  padding: 82px 34px 54px;
  text-align: center;
}

.login-dialog h2,
.register-dialog h2 {
  margin: 0;
  color: #24bf63;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.login-dialog-content > p {
  margin: 17px 0 37px;
  color: #74758a;
  font-size: 14px;
  line-height: 16px;
}

.original-form {
  display: grid;
  width: 100%;
  gap: 6px;
}

.login-dialog .original-form,
.login-dialog .original-outline-button,
.login-dialog .auth-or {
  width: min(242px, 100%);
}

.original-form label {
  margin-top: 0;
  color: #394154;
  font-size: 14px;
  text-align: left;
}

.original-form input {
  width: 100%;
  height: 44px;
  padding: 9px 13px;
  border: 1px solid #cbd2dc;
  border-radius: 6px;
  outline: none;
  color: #394154;
  font-size: 16px;
  box-shadow: 0 1px 2px #1018280d;
}

.original-form input::placeholder {
  color: #98a2b3;
}

.original-form input:focus {
  border-color: #20c566;
  box-shadow: 0 0 0 3px #20c56618;
}

.original-green-button,
.original-outline-button {
  min-height: 40px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.original-green-button {
  margin-top: 10px;
  border: 1px solid #20c566;
  background: #20c566;
  color: #fff;
}

.original-green-button:hover {
  background: #18b75a;
}

.original-green-button:disabled {
  opacity: .65;
  cursor: wait;
}

.original-outline-button {
  border: 1px solid #20c566;
  background: #fff;
  color: #20c566;
}

.auth-or {
  display: block;
  margin: 9px 0;
  color: #74758a;
  font-size: 16px;
  font-weight: 800;
}

.flow-error {
  min-height: 0;
  margin: 1px 0 0;
  color: #b42318;
  font-size: 12px;
  line-height: 15px;
  text-align: left;
}

.flow-error:empty {
  display: none;
}

.register-dialog {
  width: min(512px, calc(100% - 50px));
}

.register-head {
  position: relative;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e4e7ec;
}

.square-close {
  position: absolute;
  top: 21px;
  right: 92px;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid #667085;
  border-radius: 6px;
  background: #fff;
  color: #667085;
  cursor: pointer;
}

.square-close svg {
  width: 20px;
  height: 20px;
}

.register-form {
  display: block;
  max-height: calc(100vh - 138px);
  overflow-y: auto;
  padding: 65px 92px 0;
}

.register-form label,
.register-form input {
  display: block;
}

.register-form input {
  margin: 4px 0 17px;
}

.register-footer {
  margin: 46px -92px 0;
  padding: 16px 92px;
  border-top: 1px solid #e4e7ec;
  background: #fff;
}

.register-footer .original-green-button {
  width: 100%;
  margin: 0;
}

.secure-checkout-dialog {
  width: min(512px, calc(100% - 44px));
}

.secure-checkout-dialog > form {
  display: flex;
  max-height: calc(100vh - 48px);
  flex-direction: column;
}

.secure-checkout-head {
  position: relative;
  display: flex;
  min-height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e4e7ec;
}

.secure-checkout-head h2 {
  margin: 0;
  color: #74758a;
  font-size: 14px;
  font-weight: 900;
}

.secure-checkout-head button {
  position: absolute;
  left: 24px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101828;
  cursor: pointer;
}

.secure-checkout-head svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.secure-checkout-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 43px 24px 24px;
}

.flow-server-error {
  margin: -20px 0 22px;
  padding: 10px 12px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 12px;
}

.coupon-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}

.coupon-heading svg {
  width: 23px;
  height: 23px;
  color: #f4511e;
  stroke-width: 1.9;
}

.coupon-heading h3 {
  margin: 0;
  color: #74758a;
  font-size: 18px;
  font-weight: 900;
}

.coupon-empty {
  margin: 6px 0 24px;
  color: #666;
  font-size: 12px;
}

.checkout-product-card {
  overflow: hidden;
  border: 1px solid #d9dde4;
  border-radius: 16px;
  background: #fff;
}

.checkout-product-media {
  position: relative;
  height: 111px;
  overflow: hidden;
  background: #111;
}

.checkout-product-media::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, #000b);
}

.checkout-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.checkout-product-media strong {
  position: absolute;
  right: 16px;
  bottom: 9px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 1px 2px #0008;
}

.checkout-product-quantity {
  padding: 10px 8px 9px;
}

.checkout-product-quantity span,
.checkout-product-quantity strong {
  display: block;
}

.checkout-product-quantity span {
  color: #74758a;
  font-size: 14px;
  font-weight: 800;
}

.checkout-product-quantity strong {
  color: #009b6e;
  font-size: 18px;
}

.checkout-legal {
  flex: 0 0 auto;
  margin: 0;
  padding: 19px 24px 16px;
  border-top: 1px solid #e4e7ec;
  color: #74758a;
  font-size: 11px;
  line-height: 16px;
}

.checkout-legal a,
.checkout-legal button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #009b6e;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.secure-checkout-footer {
  display: flex;
  min-height: 92px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 24px;
  border-top: 1px solid #e4e7ec;
}

.secure-checkout-footer span,
.secure-checkout-footer strong {
  display: block;
}

.secure-checkout-footer span {
  color: #667085;
  font-size: 12px;
}

.secure-checkout-footer strong {
  color: #009b6e;
  font-size: 26px;
  line-height: 1;
}

.secure-checkout-footer small {
  font-size: 12px;
}

.secure-checkout-footer button {
  width: 197px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f4510b;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.secure-checkout-footer button:hover {
  background: #dc4305;
}

@media (max-width: 560px) {
  .flow-dialog,
  .register-dialog,
  .secure-checkout-dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
  }

  .login-dialog-content {
    padding: 66px 28px 42px;
  }

  .square-close {
    right: 22px;
  }

  .register-form {
    max-height: calc(100vh - 126px);
    padding: 42px 34px 0;
  }

  .register-footer {
    margin: 36px -34px 0;
    padding: 16px 34px;
  }

  .secure-checkout-dialog > form {
    max-height: calc(100vh - 24px);
  }

  .secure-checkout-body {
    padding: 28px 20px 20px;
  }

  .checkout-legal {
    padding-right: 20px;
    padding-left: 20px;
  }

  .secure-checkout-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .secure-checkout-footer button {
    width: min(197px, 56%);
  }
}

/* Tela PIX conforme o fluxo original */
.pix-original-body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: #eef0f5;
  color: #172033;
  font-family: Arial, "Segoe UI", sans-serif;
}

.pix-original-page {
  position: relative;
  width: 100%;
  max-width: 390px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 21px 28px;
  border-right: 4px solid #dce1e9;
  border-left: 4px solid #dce1e9;
  background: #fff;
}

.pix-back-link {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin: 0 0 2px -8px;
  color: #172033;
  text-decoration: none;
}

.pix-back-link svg {
  width: 22px;
  height: 22px;
}

.pix-original-page > h1 {
  margin: -1px 0 8px;
  color: #090d16;
  font-size: 16px;
  font-weight: 900;
  line-height: 23px;
}

.pix-demo-note {
  margin: 0 0 9px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #fff3cd;
  color: #7c5700;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .03em;
}

.pix-offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #eb2027;
}

.pix-offer-timer svg {
  width: 25px;
  height: 25px;
  fill: #eb2027;
  stroke: #eb2027;
  stroke-width: 1.5;
}

.pix-offer-timer strong {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .02em;
}

.pix-timer-copy {
  margin: 8px 0 23px;
  color: #50586b;
  font-size: 10px;
  line-height: 14px;
}

.pix-payment-instructions h2 {
  margin: 0 0 9px;
  color: #101828;
  font-size: 17px;
  line-height: 20px;
}

.pix-payment-instructions > p:not(.copy-feedback) {
  margin: 0 0 8px;
  color: #515a6e;
  font-size: 11px;
  line-height: 14px;
}

.pix-inline-copy {
  position: relative;
}

.pix-inline-copy input {
  width: 100%;
  height: 40px;
  padding: 8px 38px 8px 10px;
  overflow: hidden;
  border: 1px solid #d3d8e1;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  color: #101828;
  font-size: 12px;
  box-shadow: 0 2px 4px #1018280b;
  text-overflow: clip;
  white-space: nowrap;
}

.pix-inline-copy input:focus {
  border-color: #20c566;
}

.pix-inline-copy button {
  position: absolute;
  top: 4px;
  right: 5px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
  color: #667085;
  cursor: pointer;
}

.pix-inline-copy svg {
  width: 20px;
  height: 20px;
}

.pix-original-qr {
  display: block;
  width: 154px;
  height: 154px;
  margin: 12px auto 25px;
  object-fit: contain;
}

.pix-generated-qr {
  background: #fff;
}

.pix-generated-qr svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: none;
  stroke-width: 0;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.pix-generated-qr svg rect {
  fill: #fff;
  stroke: none;
}

.pix-generated-qr svg path {
  fill: #000;
  stroke: none;
}

.pix-generated-qr > span,
.pix-generated-qr.pix-qr-error {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #667085;
  font-size: 11px;
}

.pix-copy-main {
  width: 100%;
  min-height: 42px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: #20c566;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.pix-copy-main:hover {
  background: #17b75a;
}

.pix-original-page .copy-feedback {
  min-height: 13px;
  margin: 4px 0 7px !important;
  font-size: 10px;
}

.pix-order-card {
  overflow: hidden;
  border: 1px solid #e2e5eb;
  border-radius: 14px;
  background: #fff;
}

.pix-order-media {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.pix-order-media::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #000d);
}

.pix-order-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.pix-order-media strong {
  position: absolute;
  right: 14px;
  bottom: 9px;
  left: 14px;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.pix-order-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin: 0;
  padding: 8px 7px 13px;
}

.pix-order-card dl div {
  min-width: 0;
}

.pix-order-card dt,
.pix-order-card dd {
  margin: 0;
}

.pix-order-card dt {
  color: #172033;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
}

.pix-order-card dd {
  color: #99a2b5;
  font-size: 16px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.pix-order-card .green-value {
  color: #00a46f;
}

.pix-order-card .pix-status-value {
  color: #f2a900;
  font-size: 15px;
  line-height: 18px;
}

.pix-order-card .pix-status-value.is-approved {
  color: #16a34a;
}

.pix-original-page .approved-panel {
  margin-top: 12px;
  font-size: 12px;
}

.pix-original-page .approved-panel a {
  display: block;
  margin-top: 5px;
  color: #166534;
}

@media (max-width: 390px) {
  .pix-original-page {
    border-right-width: 3px;
    border-left-width: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Fluxo PHP: login, checkout, PIX e confirmação */
.app-body {
  min-height: 100vh;
  padding-bottom: calc(98px + env(safe-area-inset-bottom));
  background: #f4f5f7;
  color: var(--gray-3);
}

.app-header {
  padding: 20px 16px 58px;
  background: linear-gradient(135deg, #073c44, var(--brand-primary));
  color: #fff;
}

.app-header-inner {
  display: flex;
  max-width: 920px;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}

.app-header-inner p,
.app-header-inner h1,
.app-header-inner span {
  margin: 0;
}

.app-header-inner p {
  color: #78d6bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.app-header-inner h1 {
  font-size: clamp(23px, 4vw, 32px);
  line-height: 1.15;
}

.app-header-inner span {
  color: #c8d9da;
  font-size: 13px;
}

.app-back {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffffff14;
  color: #fff;
  text-decoration: none;
}

.app-back svg {
  width: 26px;
  height: 26px;
}

.app-main {
  width: calc(100% - 32px);
  max-width: 920px;
  margin: -38px auto 38px;
}

.form-card,
.order-card,
.payment-card,
.confirmation-card {
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid #e8e9ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 35px #062f3512;
}

.narrow-card,
.payment-card,
.confirmation-card {
  max-width: 620px;
  margin: 0 auto;
}

.form-card h2,
.order-card h2,
.payment-card h2,
.confirmation-card h2 {
  margin: 0 0 6px;
  color: var(--gray-4);
  font-size: 21px;
  line-height: 1.3;
}

.form-card > p,
.payment-card > p,
.confirmation-card > p {
  margin: 0 0 20px;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--flag-green);
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.stack-form {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.stack-form label:not(.check-line) {
  margin-top: 6px;
  color: var(--gray-4);
  font-size: 13px;
  font-weight: 800;
}

.stack-form input:not([type="checkbox"]),
.copy-box textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d6d8df;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: var(--gray-4);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.stack-form input:focus,
.copy-box textarea:focus {
  border-color: var(--flag-green);
  box-shadow: 0 0 0 3px #00996e1c;
}

.stack-form input[readonly] {
  padding-right: 72px;
  background: #f7f8f9;
}

.readonly-field {
  position: relative;
}

.readonly-field a {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--flag-green);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-row > div {
  display: grid;
  gap: 9px;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: var(--gray-3);
  font-size: 13px;
  cursor: pointer;
}

.check-line input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--flag-green);
}

.primary-action,
.secondary-action,
.text-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  border: 0;
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 8px 16px #de512630;
}

.primary-action:hover {
  background: #ca441b;
}

.secondary-action {
  border: 1px solid #d6d8df;
  background: #fff;
  color: var(--gray-4);
}

.text-action {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #b42318;
}

.full-action {
  width: 100%;
  margin-top: 12px;
}

.privacy-note {
  margin: 16px 0 0 !important;
  color: #8c8d9b;
  font-size: 12px;
}

.form-alert {
  margin: 17px 0;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 13px;
}

.form-alert.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.form-alert.demo {
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.account-badge {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.narrow-card > h2,
.account-email {
  text-align: center;
}

.account-email {
  overflow-wrap: anywhere;
  color: var(--flag-green);
  font-weight: 800;
}

.action-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.logout-form {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  align-items: start;
  gap: 18px;
}

.step-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.order-card {
  position: sticky;
  top: 18px;
}

.order-card dl,
.purchase-record dl,
.payment-details {
  margin: 18px 0 0;
}

.order-card dl div,
.purchase-record dl div,
.payment-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ececef;
}

.order-card dt,
.purchase-record dt,
.payment-details dt {
  color: var(--gray-3);
  font-size: 13px;
}

.order-card dd,
.purchase-record dd,
.payment-details dd {
  margin: 0;
  color: var(--gray-4);
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.order-card .order-total {
  border-bottom: 0;
  font-size: 19px;
}

.order-total dd {
  color: var(--flag-green);
}

.pix-seal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  background: #f5f7f7;
}

.pix-seal svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--flag-green);
}

.pix-seal strong,
.pix-seal span {
  display: block;
}

.pix-seal strong {
  color: var(--gray-4);
  font-size: 13px;
}

.pix-seal span {
  font-size: 11px;
}

.demo-ribbon {
  margin: -10px -10px 22px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff3cd;
  color: #7c5700;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  padding: 13px 14px;
  border: 1px solid #fde68a;
  border-radius: 11px;
  background: #fffbeb;
  color: #854d0e;
}

.payment-status.approved {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.payment-status small,
.payment-status strong {
  display: block;
}

.payment-status small {
  font-size: 11px;
}

.status-pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 #f59e0b66;
  animation: status-pulse 1.8s infinite;
}

.payment-status.approved .status-pulse {
  background: #16a34a;
  animation: none;
}

@keyframes status-pulse {
  70% { box-shadow: 0 0 0 9px #f59e0b00; }
  100% { box-shadow: 0 0 0 0 #f59e0b00; }
}

.payment-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececef;
}

.payment-value strong {
  color: var(--flag-green);
  font-size: 25px;
}

.qr-image,
.qr-placeholder {
  width: min(240px, 80%);
  aspect-ratio: 1;
  margin: 22px auto;
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.qr-image {
  display: block;
  object-fit: contain;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  background: #f4f5f7;
  color: #9ca3af;
}

.qr-placeholder svg {
  width: 72%;
  height: 72%;
  stroke-width: 1.4;
}

.payment-card > h2,
.payment-card > h2 + p {
  text-align: center;
}

.copy-box textarea {
  resize: vertical;
  font: 12px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace;
  overflow-wrap: anywhere;
}

.copy-feedback {
  min-height: 18px;
  margin: 8px 0 0 !important;
  color: var(--flag-green);
  font-size: 12px;
  text-align: center;
}

.approved-panel {
  margin-top: 18px;
  padding: 16px;
  border-radius: 11px;
  background: #f0fdf4;
  color: #166534;
  text-align: center;
}

.approved-panel strong {
  display: block;
  margin-bottom: 4px;
}

.approved-panel[hidden] {
  display: none;
}

.confirmation-card {
  text-align: center;
}

.success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
}

.success-mark svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}

.pending-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 4px solid #fde68a;
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: pending-spin 1s linear infinite;
}

@keyframes pending-spin { to { transform: rotate(360deg); } }

.ticket-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 24px 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f0fdf4;
  color: #166534;
  text-align: left;
}

.ticket-summary span {
  font-weight: 900;
}

.ticket-summary small {
  overflow-wrap: anywhere;
  text-align: right;
}

.ticket-grid {
  display: grid;
  max-height: 420px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  overflow-y: auto;
  padding: 5px;
}

.ticket-grid span,
.ticket-inline {
  padding: 8px 5px;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  background: #f0fdf4;
  color: #166534 !important;
  font: 800 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-align: center;
}

.ticket-grid span.is-winner {
  border-color: #f59e0b;
  background: #fef3c7;
  color: #92400e !important;
  box-shadow: 0 0 0 2px #f59e0b33;
}

.instant-win-alert {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid #fbbf24;
  border-radius: 11px;
  background: #fffbeb;
  color: #92400e;
  text-align: left;
}

.instant-win-alert strong {
  color: #78350f;
}

.instant-win-alert span {
  font: 900 14px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.instant-win-alert small {
  margin-top: 4px;
}

.list-note {
  margin: 10px 0 !important;
  font-size: 12px;
}

.empty-state {
  display: grid;
  justify-items: center;
  padding: 28px 10px;
  text-align: center;
}

.empty-state svg {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: #a7a8b4;
}

.empty-state p {
  max-width: 480px;
}

.record-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.record-top small,
.record-top strong {
  display: block;
}

.record-top strong {
  color: var(--gray-4);
  overflow-wrap: anywhere;
}

.status-chip {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  font-size: 11px;
  font-weight: 900;
}

.status-chip.approved {
  background: #dcfce7;
  color: #166534;
}

.help-card details {
  border-bottom: 1px solid #e5e7eb;
}

.help-card summary {
  padding: 16px 2px;
  color: var(--gray-4);
  font-weight: 900;
  cursor: pointer;
}

.help-card details p {
  margin: -5px 2px 17px;
  font-size: 14px;
}

.help-contact {
  margin-top: 24px;
  padding: 17px;
  border-radius: 11px;
  background: #f5f7f7;
}

.help-contact strong {
  color: var(--gray-4);
}

.help-contact p {
  margin: 4px 0 13px;
}

@media (max-width: 720px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    position: static;
    grid-row: 1;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .ticket-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .app-body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .app-main {
    width: calc(100% - 20px);
  }

  .form-card,
  .order-card,
  .payment-card,
  .confirmation-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-summary,
  .record-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-summary small {
    text-align: left;
  }
}
