/* =========================================================
   VARIABLES TOTALPACK
========================================================= */

:root {
  --tp-blue: #174aff;
  --tp-blue-dark: #123ac6;
  --tp-blue-deep: #122d75;

  --tp-blue-soft: #e7eeff;
  --tp-blue-extra-soft: #f1f5fc;

  --success: #239b62;
  --success-dark: #167c4b;
  --success-soft: #e5f7ee;

  --error: #d64545;
  --error-soft: #fff0f0;

  --warning: #d68a17;
  --warning-soft: #fff6e7;

  --background: #edf3fa;
  --surface: #fbfcfe;

  --text: #202733;
  --text-secondary: #667180;
  --text-light: #8b97a6;

  --border: #d9e2ed;
  --border-soft: #e6edf5;

  --disabled: #bac6ea;

  --shadow-small:
    0 10px 30px rgba(29, 52, 91, 0.07);

  --shadow-medium:
    0 20px 55px rgba(29, 52, 91, 0.11);

  --shadow-large:
    0 30px 80px rgba(17, 43, 100, 0.16);

  --radius-small: 18px;
  --radius-medium: 26px;
  --radius-large: 34px;
  --radius-extra: 44px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  font-family:
    Inter,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

  background: var(--background);

  color: var(--text);

  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   APP
========================================================= */

.app-shell {
  width: 100vw;
  height: 100vh;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background: var(--background);
}

.kiosk {
  position: relative;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(80, 128, 210, 0.11),
      transparent 34%
    ),
    radial-gradient(
      circle at 0% 85%,
      rgba(72, 111, 185, 0.05),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      #f3f7fc 0%,
      #edf3fa 40%,
      #e9f1f9 100%
    );
}


/* =========================================================
   HEADER
========================================================= */

.brand-header {
  width: 100%;

  height: 145px;
  min-height: 145px;

  padding: 20px 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f9fbfe;

  border-bottom:
    1px solid var(--border-soft);

  box-shadow:
    0 4px 18px rgba(25, 54, 102, 0.035);

  z-index: 20;
}

.header-logo {
  display: block;

  width: auto;
  height: auto;

  max-width: 280px;
  max-height: 74px;

  object-fit: contain;
}


/* =========================================================
   CONTENIDO
========================================================= */

.screen-content {
  flex: 1;

  width: 100%;

  min-height: 0;

  overflow-y: auto;

  padding:
    54px
    66px
    66px;

  scrollbar-width: none;
}

.screen-content::-webkit-scrollbar {
  display: none;
}

.page {
  width: 100%;

  min-height: 100%;

  display: flex;
  flex-direction: column;

  gap: 30px;
}


/* =========================================================
   ENCABEZADOS
========================================================= */

.page-heading {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.eyebrow {
  display: inline-flex;

  width: fit-content;

  padding:
    9px
    17px;

  border-radius: 999px;

  background: #dfe9fc;

  color: var(--tp-blue-dark);

  font-size: 17px;

  font-weight: 800;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 900px;

  font-size: 62px;

  line-height: 1.05;

  letter-spacing: -0.045em;
}

h2 {
  font-size: 40px;

  line-height: 1.12;
}

h3 {
  font-size: 27px;
}

.lead {
  max-width: 850px;

  color: var(--text-secondary);

  font-size: 25px;

  line-height: 1.45;
}


/* =========================================================
   BIENVENIDA
========================================================= */

.welcome-page {
  width: 100%;
  min-height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  gap: 38px;
}

.welcome-hero {
  position: relative;

  width: 100%;

  min-height: 825px;

  overflow: hidden;

  padding:
    72px
    62px
    66px;

  border-radius: 42px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #17337a 0%,
      #244fc4 46%,
      #1b4eff 100%
    );

  box-shadow:
    0 28px 72px rgba(26, 66, 176, 0.17);

  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

.welcome-hero::before {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -230px;
  top: -250px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.055);
}

.welcome-hero::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -300px;
  bottom: -310px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.045);
}

.welcome-content {
  position: relative;

  z-index: 2;
}

.welcome-badge {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  padding:
    12px
    20px;

  margin-bottom: 42px;

  border-radius: 999px;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  background:
    rgba(255, 255, 255, 0.11);

  color: #ffffff;

  font-size: 18px;

  font-weight: 700;
}

.welcome-badge-dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #72aaff;

  box-shadow:
    0 0 0 7px rgba(114, 170, 255, 0.14);
}

.welcome-title {
  max-width: 760px;

  font-size: 75px;

  line-height: 1.03;

  letter-spacing: -0.055em;

  font-weight: 850;
}

.welcome-description {
  max-width: 760px;

  margin-top: 27px;

  color:
    rgba(255, 255, 255, 0.84);

  font-size: 27px;

  line-height: 1.45;
}

.welcome-visual {
  position: relative;

  z-index: 2;

  width: 100%;

  margin-top: 55px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.welcome-step {
  min-height: 215px;

  padding:
    30px
    26px;

  border-radius: 25px;

  background:
    rgba(255, 255, 255, 0.10);

  border:
    1px solid rgba(255, 255, 255, 0.11);
}

.welcome-step-number {
  width: 48px;
  height: 48px;

  margin-bottom: 22px;

  display: grid;

  place-items: center;

  border-radius: 14px;

  background: #ffffff;

  color: var(--tp-blue-dark);

  font-size: 19px;

  font-weight: 900;
}

.welcome-step strong {
  display: block;

  color: #ffffff;

  font-size: 22px;
}

.welcome-step span {
  display: block;

  margin-top: 9px;

  color:
    rgba(255, 255, 255, 0.74);

  font-size: 17px;

  line-height: 1.4;
}

.welcome-bottom {
  width: 100%;

  margin-top: auto;
}

.welcome-help {
  margin-top: 18px;

  text-align: center;

  color: var(--text-light);

  font-size: 18px;
}


/* =========================================================
   PROGRESO
========================================================= */

.flow-progress {
  width: 100%;

  padding:
    20px
    26px;

  border-radius: 22px;

  border:
    1px solid #dce5f0;

  background: #f2f6fb;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;
}

.flow-dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #cbd6e4;
}

.flow-dot.active {
  width: 34px;

  border-radius: 999px;

  background: var(--tp-blue);
}


/* =========================================================
   TARJETAS
========================================================= */

.camera-card,
.cart-card,
.demo-card,
.transaction-card,
.ticket-card {
  background: #fbfcfe;

  border:
    1px solid #e0e8f1;

  border-radius:
    var(--radius-large);

  box-shadow:
    var(--shadow-small);
}


/* =========================================================
   CAMARA / VISOR
========================================================= */

.camera-card {
  width: 100%;

  padding: 20px;
}

.camera-frame {
  position: relative;

  width: 100%;
  height: 635px;

  overflow: hidden;

  border-radius: 28px;

  display: grid;

  place-items: center;

  background:
    linear-gradient(
      145deg,
      #171a22 0%,
      #070910 100%
    );
}


/* =========================================================
   IMAGEN REAL DE BANDEJA
========================================================= */

.camera-food-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  z-index: 1;
}

.camera-food-image.dimmed {
  filter:
    brightness(.55)
    saturate(.9);
}


/* =========================================================
   ESQUINAS ESCANER
========================================================= */

.scanner-corner {
  position: absolute;

  width: 80px;
  height: 80px;

  z-index: 5;
}

.scanner-corner.top-left {
  left: 34px;
  top: 34px;

  border-left:
    6px solid rgba(255, 255, 255, .92);

  border-top:
    6px solid rgba(255, 255, 255, .92);
}

.scanner-corner.top-right {
  right: 34px;
  top: 34px;

  border-right:
    6px solid rgba(255, 255, 255, .92);

  border-top:
    6px solid rgba(255, 255, 255, .92);
}

.scanner-corner.bottom-left {
  left: 34px;
  bottom: 34px;

  border-left:
    6px solid rgba(255, 255, 255, .92);

  border-bottom:
    6px solid rgba(255, 255, 255, .92);
}

.scanner-corner.bottom-right {
  right: 34px;
  bottom: 34px;

  border-right:
    6px solid rgba(255, 255, 255, .92);

  border-bottom:
    6px solid rgba(255, 255, 255, .92);
}


/* =========================================================
   REPOSO
========================================================= */

.camera-placeholder {
  position: relative;

  z-index: 4;

  max-width: 680px;

  padding: 60px;

  text-align: center;

  color: #ffffff;
}

.camera-symbol {
  width: 110px;
  height: 110px;

  margin:
    0 auto 32px;

  display: grid;

  place-items: center;

  border-radius: 32px;

  background:
    rgba(255, 255, 255, .09);

  border:
    1px solid rgba(255, 255, 255, .14);

  font-size: 48px;
}

.camera-placeholder strong {
  display: block;

  font-size: 38px;
}

.camera-placeholder span {
  display: block;

  margin-top: 15px;

  color:
    rgba(255, 255, 255, .67);

  font-size: 23px;

  line-height: 1.4;
}


/* =========================================================
   COUNTDOWN SOBRE FOTO
========================================================= */

.countdown-layer {
  position: absolute;

  inset: 0;

  z-index: 6;

  display: grid;

  place-items: center;

  background:
    rgba(5, 14, 30, .25);
}

.countdown {
  width: 250px;
  height: 250px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    rgba(8, 18, 51, .68);

  border:
    8px solid rgba(255, 255, 255, .22);

  color: #ffffff;

  font-size: 150px;

  font-weight: 900;

  box-shadow:
    0 20px 60px rgba(0,0,0,.22);
}


/* =========================================================
   FLASH CAPTURA
========================================================= */

.capture-flash {
  position: absolute;

  inset: 0;

  z-index: 10;

  pointer-events: none;

  background: #ffffff;

  opacity: 0;

  animation:
    captureFlash .4s ease-out;
}

@keyframes captureFlash {
  0% {
    opacity: 0;
  }

  35% {
    opacity: .88;
  }

  100% {
    opacity: 0;
  }
}


/* =========================================================
   ESCANEO
========================================================= */

.scan-overlay {
  position: absolute;

  inset: 0;

  z-index: 6;

  display: grid;

  place-items: center;

  padding: 60px;

  text-align: center;

  color: #ffffff;

  background:
    rgba(7, 17, 47, .62);
}

.scan-content {
  max-width: 650px;
}

.scan-overlay h2 {
  margin-top: 15px;

  font-size: 42px;
}

.scan-overlay p {
  margin-top: 16px;

  color:
    rgba(255, 255, 255, .82);

  font-size: 24px;

  line-height: 1.45;
}


/* =========================================================
   SPINNER
========================================================= */

.spinner {
  width: 92px;
  height: 92px;

  margin:
    0 auto 30px;

  border-radius: 50%;

  border:
    10px solid rgba(255, 255, 255, .20);

  border-top-color: #ffffff;

  animation:
    spinnerRotate .85s linear infinite;
}

@keyframes spinnerRotate {
  to {
    transform:
      rotate(360deg);
  }
}


/* =========================================================
   DETECCIONES VISUALES
========================================================= */

.detection-label {
  position: absolute;

  z-index: 7;

  display: flex;

  align-items: center;

  gap: 8px;

  padding:
    10px
    14px;

  border-radius: 999px;

  color: #0f633e;

  background:
    rgba(229, 247, 238, .95);

  border:
    1px solid rgba(35, 155, 98, .24);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, .12);

  font-size: 16px;

  font-weight: 800;

  backdrop-filter:
    blur(6px);
}

.detection-label::before {
  content: "✓";

  width: 24px;
  height: 24px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    var(--success);

  font-size: 13px;
}

.detect-pasta {
  left: 13%;
  top: 19%;
}

.detect-jugo {
  right: 10%;
  top: 20%;
}

.detect-papas {
  left: 7%;
  bottom: 18%;
}

.detect-ensalada {
  left: 40%;
  bottom: 16%;
}

.detect-nuggets {
  right: 7%;
  bottom: 18%;
}


/* =========================================================
   BOTONES
========================================================= */

.actions {
  width: 100%;

  display: grid;

  gap: 18px;
}

.btn {
  width: 100%;

  min-height: 94px;

  padding:
    22px 34px;

  border: 0;

  border-radius: 22px;

  cursor: pointer;

  font-size: 27px;

  font-weight: 800;
}

.btn:active {
  transform:
    scale(.985);
}

.btn-primary {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #2c61fa 0%,
      #1747d7 100%
    );

  box-shadow:
    0 15px 30px rgba(23, 74, 255, .18);
}

.btn-secondary {
  color:
    var(--tp-blue-dark);

  background:
    #e5edfc;

  border:
    2px solid rgba(23, 74, 255, .10);
}

.btn-error {
  color: #ffffff;

  background:
    var(--error);
}

.btn-outline {
  color:
    var(--text);

  background:
    #f8fafd;

  border:
    2px solid var(--border);
}

.btn[disabled] {
  color:
    rgba(255, 255, 255, .92);

  background:
    var(--disabled);

  cursor: not-allowed;

  opacity: .85;
}


/* =========================================================
   CARRITO
========================================================= */

.cart-card {
  width: 100%;

  padding: 34px;
}

.cart-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-bottom: 22px;

  border-bottom:
    1px solid #e5ebf3;
}

.cart-heading {
  display: flex;

  align-items: center;

  gap: 15px;
}

.cart-icon {
  width: 54px;
  height: 54px;

  display: grid;

  place-items: center;

  border-radius: 17px;

  background:
    #e4ecfb;

  color:
    var(--tp-blue-dark);

  font-size: 25px;
}

.cart-count {
  padding:
    9px 15px;

  border-radius: 999px;

  background:
    #edf2f8;

  color:
    var(--text-secondary);

  font-size: 18px;

  font-weight: 700;
}

.cart-empty {
  padding:
    42px 20px;

  text-align: center;

  color:
    var(--text-secondary);

  font-size: 21px;
}

.product-list {
  margin-top: 8px;
}

.product-row {
  display: flex;

  justify-content: space-between;

  gap: 25px;

  padding:
    20px 4px;

  border-bottom:
    1px solid #e7edf4;

  font-size: 22px;
}

.product-name {
  font-weight: 650;
}

.product-price {
  font-weight: 850;
}

.cart-total {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding:
    28px 4px;

  font-size: 31px;

  font-weight: 850;
}

.cart-total-value {
  color:
    var(--tp-blue-dark);

  font-size: 38px;
}


/* =========================================================
   RECONOCIMIENTO
========================================================= */

.recognition-summary {
  display: flex;

  align-items: center;

  gap: 18px;

  padding:
    24px 28px;

  border-radius:
    var(--radius-medium);

  background:
    #e4edfc;

  color:
    var(--tp-blue-dark);
}

.recognition-icon {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 18px;

  background: #ffffff;

  font-size: 27px;

  font-weight: 900;
}

.recognition-summary strong {
  display: block;

  font-size: 23px;
}

.recognition-summary span {
  display: block;

  margin-top: 4px;

  color:
    #5c709b;

  font-size: 18px;
}


/* =========================================================
   ERROR RECONOCIMIENTO
========================================================= */

.empty-result {
  width: 100%;

  padding:
    46px 42px;

  border-radius:
    var(--radius-large);

  background:
    var(--warning-soft);

  border:
    1px solid #f3dec0;

  text-align: center;
}

.status-icon {
  width: 96px;
  height: 96px;

  margin:
    0 auto 24px;

  display: grid;

  place-items: center;

  border-radius: 30px;

  font-size: 46px;

  font-weight: 900;
}

.status-icon.warning {
  color:
    var(--warning);

  background:
    #ffffff;
}

.status-icon.success {
  color:
    var(--success);

  background:
    var(--success-soft);
}

.status-icon.error {
  color:
    var(--error);

  background:
    var(--error-soft);
}


/* =========================================================
   TRANSACCIÓN
========================================================= */

.transaction-card {
  width: 100%;

  min-height: 790px;

  padding:
    52px
    50px;
}

.transaction-content {
  width: 100%;

  max-width: 720px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}

.card-simulation {
  position: relative;

  width: 470px;
  height: 280px;

  margin-bottom: 35px;

  padding:
    34px
    36px;

  overflow: hidden;

  border-radius: 30px;

  color: #ffffff;

  text-align: left;

  background:
    linear-gradient(
      145deg,
      #102c76 0%,
      #1b4ee8 55%,
      #3970ff 100%
    );

  box-shadow:
    0 25px 55px rgba(24, 67, 190, 0.22);
}

.card-top {
  display: flex;

  justify-content: space-between;
}

.card-chip {
  width: 68px;
  height: 52px;

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #f6d88a,
      #cfae52
    );
}

.card-contactless {
  font-size: 35px;

  transform:
    rotate(90deg);
}

.card-number {
  margin-top: 50px;

  font-size: 28px;

  font-weight: 750;

  letter-spacing: .15em;
}

.card-bottom {
  margin-top: 32px;

  display: flex;

  justify-content: space-between;

  color:
    rgba(255, 255, 255, .78);

  font-size: 15px;
}

.transaction-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding:
    10px
    18px;

  margin-bottom: 22px;

  border-radius: 999px;

  background: #e5edfc;

  color:
    var(--tp-blue-dark);

  font-size: 16px;

  font-weight: 850;
}

.transaction-badge-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    var(--tp-blue);
}

.transaction-title {
  font-size: 42px;
}

.transaction-description {
  max-width: 570px;

  margin-top: 14px;

  color:
    var(--text-secondary);

  font-size: 22px;

  line-height: 1.5;
}

.transaction-amount {
  width: 100%;

  max-width: 580px;

  margin-top: 30px;

  padding:
    24px
    30px;

  border-radius: 22px;

  background:
    #edf3fa;

  border:
    1px solid #dce5f0;
}

.transaction-amount span {
  display: block;

  color:
    var(--text-secondary);

  font-size: 17px;
}

.transaction-amount strong {
  display: block;

  margin-top: 5px;

  color:
    var(--tp-blue-dark);

  font-size: 45px;
}

.transaction-steps {
  width: 100%;

  margin-top: 34px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 13px;
}

.transaction-step {
  min-height: 82px;

  padding:
    15px 10px;

  border-radius: 17px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 7px;

  background:
    #eef2f7;

  color:
    #8994a2;

  border:
    1px solid #e3e9f0;

  transition:
    all .35s ease;
}

.transaction-step-number {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background:
    #dfe5ec;

  font-weight: 900;
}

.transaction-step.current {
  background:
    #e5edfc;

  color:
    var(--tp-blue-dark);
}

.transaction-step.current
.transaction-step-number {
  background:
    var(--tp-blue);

  color:
    #ffffff;
}

.transaction-step.completed {
  background:
    var(--success-soft);

  color:
    var(--success-dark);

  border-color:
    #c7e8d7;
}

.transaction-step.completed
.transaction-step-number {
  background:
    var(--success);

  color:
    #ffffff;
}

.transaction-pay-button {
  width: 100%;

  max-width: 580px;

  margin-top: 34px;
}

.transaction-spinner {
  width: 76px;
  height: 76px;

  margin:
    28px auto 0;

  border-radius: 50%;

  border:
    8px solid #dfe8f7;

  border-top-color:
    var(--tp-blue);

  animation:
    spinnerRotate .85s linear infinite;
}

.transaction-helper {
  margin-top: 22px;

  color:
    var(--text-light);

  font-size: 18px;
}


/* =========================================================
   TICKET
========================================================= */

.ticket-card {
  width: 100%;

  min-height: 980px;

  padding:
    58px
    52px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}

.ticket-success-icon {
  width: 120px;
  height: 120px;

  margin-bottom: 28px;

  display: grid;

  place-items: center;

  border-radius: 38px;

  background:
    var(--success-soft);

  color:
    var(--success);

  font-size: 60px;

  font-weight: 900;
}

.ticket-title {
  font-size: 48px;
}

.ticket-description {
  max-width: 650px;

  margin-top: 15px;

  color:
    var(--text-secondary);

  font-size: 23px;

  line-height: 1.5;
}

.ticket-printer {
  position: relative;

  width: 520px;
  height: 255px;

  margin:
    36px auto 0;
}

.ticket-printer-body {
  position: absolute;

  left: 50%;
  top: 0;

  width: 420px;
  height: 145px;

  transform:
    translateX(-50%);

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      #1f2c42 0%,
      #344866 100%
    );

  z-index: 3;
}

.ticket-printer-slot {
  position: absolute;

  left: 50%;
  top: 86px;

  width: 300px;
  height: 16px;

  transform:
    translateX(-50%);

  border-radius: 999px;

  background:
    #101927;
}

.ticket-printer-light {
  position: absolute;

  right: 42px;
  top: 38px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background:
    #4fe18c;
}

.ticket-paper {
  position: absolute;

  left: 50%;
  top: 95px;

  width: 310px;

  transform:
    translateX(-50%);

  padding:
    30px
    28px;

  background:
    #ffffff;

  border:
    1px solid #e2e6ec;

  border-radius:
    6px
    6px
    18px
    18px;

  box-shadow:
    0 25px 50px rgba(25, 42, 70, .14);

  animation:
    ticketOut 1.2s ease-out forwards;
}

@keyframes ticketOut {
  from {
    transform:
      translate(-50%, -120px);

    opacity: .2;
  }

  to {
    transform:
      translate(-50%, 0);

    opacity: 1;
  }
}

.ticket-logo-text {
  font-size: 24px;

  font-weight: 900;
}

.ticket-separator {
  margin:
    22px 0;

  border-top:
    2px dashed #d8dee8;
}

.ticket-row {
  display: flex;

  justify-content: space-between;

  margin-top: 13px;

  color:
    #5e6977;

  font-size: 16px;
}

.ticket-total {
  margin-top: 20px;

  padding-top: 18px;

  border-top:
    2px solid #e4e8ee;

  display: flex;

  justify-content: space-between;

  font-size: 20px;

  font-weight: 900;
}

.ticket-total strong {
  color:
    var(--tp-blue-dark);

  font-size: 26px;
}

.ticket-footer {
  margin-top: 24px;

  color:
    #8a94a1;

  font-size: 14px;
}

.ticket-thanks {
  margin-top: 350px;

  font-size: 35px;

  font-weight: 850;
}

.ticket-thanks span {
  display: block;

  margin-top: 10px;

  color:
    var(--text-secondary);

  font-size: 20px;

  font-weight: 500;
}

.ticket-actions {
  width: 100%;

  max-width: 580px;

  margin-top: 32px;
}


/* =========================================================
   PANEL DEMO
========================================================= */

.demo-card {
  width: 100%;

  padding: 40px;
}

.demo-section + .demo-section {
  margin-top: 34px;

  padding-top: 34px;

  border-top:
    1px solid #e4ebf3;
}

.demo-section p {
  margin-top: 8px;

  color:
    var(--text-secondary);

  font-size: 20px;
}

.radio-list {
  display: grid;

  gap: 16px;

  margin-top: 22px;
}

.radio-option {
  min-height: 76px;

  padding:
    18px 22px;

  display: flex;

  align-items: center;

  gap: 16px;

  border-radius: 18px;

  background:
    #eef3f9;

  border:
    2px solid transparent;

  cursor: pointer;

  font-size: 21px;
}

.radio-option:has(input:checked) {
  background:
    #e1eafb;

  border-color:
    rgba(23, 74, 255, .20);
}

.radio-option input {
  width: 25px;
  height: 25px;

  accent-color:
    var(--tp-blue);
}

.saved-message {
  margin-top: 18px;

  padding: 18px;

  border-radius: 16px;

  color:
    var(--tp-blue-dark);

  background:
    #e2ebfa;

  font-size: 20px;

  font-weight: 750;

  text-align: center;
}


/* =========================================================
   AYUDA
========================================================= */

.screen-tip {
  display: flex;

  align-items: center;

  gap: 14px;

  color:
    var(--text-secondary);

  font-size: 19px;
}

.screen-tip-icon {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 13px;

  color:
    var(--tp-blue-dark);

  background:
    #e1eaf9;

  font-weight: 900;
}


/* =========================================================
   CONFIGURACION
========================================================= */

.demo-access {
  position: absolute;

  right: 25px;
  bottom: 25px;

  z-index: 100;

  width: 62px;
  height: 62px;

  display: grid;

  place-items: center;

  border:
    1px solid #dde5ef;

  border-radius: 50%;

  background:
    #f5f8fc;

  color:
    var(--text-secondary);

  box-shadow:
    0 10px 30px rgba(24, 55, 85, .11);

  font-size: 24px;

  cursor: pointer;
}