@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/BwModelica-Regular.woff") format("woff"), url("../fonts/BwModelica-Regular.ttf") format("truetype"), url("../fonts/BwModelica-Medium.svg#BwModelica-Regular") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "BayerSans";
  src: url("../fonts/BayerSansWeb-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BayerSans";
  src: url("../fonts/BayerSansWeb-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BayerSans";
  src: url("../fonts/BayerSansWeb-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/BayerSansWeb-Heavy.woff2") format("woff2");
  font-family: "BayerSans";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BayerSans";
  src: url("../fonts/BayerSansWeb-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/BayerSansWeb-LightItalic.woff2") format("woff2");
  font-family: "BayerSans";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/BayerSansWeb-BoldItalic.woff2") format("woff2");
  font-family: "BayerSans";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/BayerSansWeb-HeavyItalic.woff2") format("woff2");
  font-family: "BayerSans";
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/BayerSansWeb-BlackItalic.woff2") format("woff2");
  font-family: "BayerSans";
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --dark: #1A1A2E;
  --gray-bg: #F4F4F6;
  --text: #444444;
  --text-2: #616161;
  --beige-bg: #f3f0e9;
  --fuchsia: #ff3162;
  --bright-green: #89d329;
  --bright-blue: #00BCFF;
  --raspberry: #D30F4B;
  --green: #66B512;
  --blue: #0091DF;
  --mid-purple: #624963;
  --mid-green: #2B6636;
  --mid-blue: #00617F;
  --dark-purple: #443247;
  --dark-green: #004422;
  --dark-blue: #10384F;
  --gradient-rest: linear-gradient(135deg, #808080 0%, #dbdbdb 100%);
  --gradient-1st: linear-gradient(135deg, var(--bright-green) 0%, var(--mid-green) 100%);
  --gradient-2nd: linear-gradient(135deg, var(--bright-blue) 0%, var(--mid-blue) 100%);
  --gradient-3rd: linear-gradient(135deg, var(--raspberry) 0%, var(--mid-purple) 100%);
  --bs-custom-modal-padding: 0.5rem;
  --bs-custom-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23ff3162' stroke='%23ff3162' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--mid-blue);
  --bs-btn-active-border-color: var(--mid-blue);
}

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

body {
  font-family: "BayerSans", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--text);
  background: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("../img/Fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
}

.strong,
strong {
  font-family: "BayerSans";
  font-weight: 600;
}

a {
  color: var(--green);
}

.txt_rasp {
  color: var(--raspberry);
}

.txt_fuch {
  color: var(--fuchsia);
}

.txt_grn {
  color: var(--bright-blue);
}

.brd-end {
  border-right: none;
  border-bottom: 2px solid #eee;
}

.hand {
  cursor: pointer;
}

/* ──────────────────────────────────────────
    WRAPPER PRINCIPAL
────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 1rem 0;
}

/* El bloque central crece para empujar el footer hacia abajo */
.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ──────────────────────────────────────────
    FOOTER
────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1.75rem 0;
  font-size: 0.72rem;
  color: #fff;
}

.site-footer a,
.site-footer i {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--bright-blue);
}

/* ──────────────────────────────────────────
    LOGO
────────────────────────────────────────── */
.logo-area {
  padding: 1.5rem 0 0 0.5rem;
}
.logo-area img {
  max-width: 200px;
}

.navbar-brand img {
  max-width: 200px;
}

h1 {
  font-family: "BayerSans";
  font-weight: 800;
  font-style: italic;
}

strong {
  font-family: "BayerSans";
  font-weight: 800;
}

/* ──────────────────────────────────────────
    STEPPER
────────────────────────────────────────── */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1rem 0 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "BayerSans";
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.step-circle.active {
  background: #e5004b;
  color: #fff;
  box-shadow: 0 0 18px rgba(232, 25, 75, 0.55);
}

.step-circle.pending {
  background: #00baee;
  color: #fff;
  border: 2.5px solid #00baee;
}

.step-label {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
}

.step-connector {
  width: 60px;
  height: 2px;
  margin: 0 0.4rem;
  flex-shrink: 0;
}

.step-connector.red {
  background: #e8194b;
}

.step-connector.blue {
  background: #5cc8e8;
}

/* ──────────────────────────────────────────
    premain text
────────────────────────────────────────── */
.premain-text {
  color: white;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  font-family: "BayerSans";
  font-weight: 600;
  font-style: normal;
}

/* ──────────────────────────────────────────
    CARD PRINCIPAL
────────────────────────────────────────── */
.main-card {
  background: rgba(8, 12, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  padding: 2rem 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  /* borde superior decorativo con puntos */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* línea de puntos superior */
.card-dot-strip {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.2rem;
}

.card-dot-strip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.card-dot-strip span:nth-child(3n+1) {
  background: rgba(232, 25, 75, 0.35);
}

/* Título */
.card-title-main {
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.card-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-name {
  font-size: 1.2rem;
  color: var(--bright-blue);
  text-align: center;
  margin-bottom: 0;
}

.card-department {
  font-size: 0.85rem;
  color: var(--fuchsia);
  text-align: center;
  margin: 0;
}

.photo-user-design {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.photo-user-design img {
  max-width: 240px;
  height: auto;
}
.photo-user-design img[data-index] {
  position: absolute;
  top: 0;
  left: 0;
}

/* ──────────────────────────────────────────
    FOTO UPLOAD
────────────────────────────────────────── */
.photo-upload-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.photo-upload-btn {
  width: 241px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  border: 2.5px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.photo-upload-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.13);
}

.photo-upload-btn input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.photo-upload-btn .camera-icon {
  vertical-align: middle;
}

.photo-upload-btn .upload-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.photo-upload-items {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 0 0.5rem 0.3rem 0;
}

/* Preview de imagen seleccionada */
.photo-upload-btn img.preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ──────────────────────────────────────────
    CAMPOS
────────────────────────────────────────── */
.field-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
  display: block;
  text-align: center;
}

.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: #111;
  outline: none;
  transition: box-shadow 0.2s;
  margin-bottom: 1.1rem;
}

.field-input:focus {
  box-shadow: 0 0 0 3px rgba(92, 200, 232, 0.45);
}

.field-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/* ──────────────────────────────────────────
    BOTONES
────────────────────────────────────────── */
.btn-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-atras {
  font-family: "BayerSans";
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a2a5e;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 1.8rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a2a5e;
}

.btn-atras:hover {
  background: #243a7e;
}

.btn-blue {
  font-family: "BayerSans";
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  background: #243a7e;
}
.btn-blue:hover {
  background: #3658be;
  color: #fff;
}

.btn-lblue {
  font-family: "BayerSans";
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  background: var(--bright-blue);
}
.btn-lblue:hover {
  background: #3658be;
  color: #fff;
}

.btn-fuchsia {
  font-family: "BayerSans";
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  background: #e5004b;
}
.btn-fuchsia:hover {
  background: #e62d6b;
  color: #fff;
}

.btn-continuar {
  font-family: "BayerSans";
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a2a5e;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 1.8rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #e5004b;
  box-shadow: 0 0 18px rgba(232, 25, 75, 0.35);
}

.btn-continuar:hover,
.btn-continuar:active,
.btn-continuar:focus {
  background: #ff2060;
  color: #fff;
  box-shadow: 0 0 26px rgba(232, 25, 75, 0.55);
}

.btn-addstamp {
  font-family: "BayerSans";
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a2a5e;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 1.8rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--bright-green);
  box-shadow: 0 0 18px rgba(232, 25, 75, 0.35);
  vertical-align: text-bottom !important;
}
.btn-addstamp i,
.btn-addstamp svg {
  vertical-align: middle;
}

.btn-addstamp:hover,
.btn-addstamp:active,
.btn-addstamp:focus {
  background: #ff2060;
  color: #fff;
  box-shadow: 0 0 26px rgba(232, 25, 75, 0.55);
}

/* ──────────────────────────────────────────
    Navbar
────────────────────────────────────────── */
.navbar-toggler {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--bright-blue);
}

.navbar-toggler:focus {
  -webkit-box-shadow: 0 0 0 0.15rem rgb(255, 255, 255);
  box-shadow: 0 0 0 0.15rem rgb(255, 255, 255);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300BCFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-item {
  border-bottom: 1px solid var(--bright-blue);
}

.navbar .nav-item.active .nav-link {
  color: var(--bright-blue);
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  padding-left: 0.8rem;
}
.navbar .nav-link:hover {
  color: var(--bright-blue);
}

.offcanvas {
  background-color: #002e46;
  border-left: 3px solid var(--bright-blue) !important;
}
.offcanvas .offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300BCFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  opacity: 1;
}

/* ===== SCREEN 3: MARCOS ===== */
.frames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 13px 26px;
  padding: 16px 48px;
}

.frame-card {
  background: rgba(24, 24, 24, 0.7725490196);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.frame-card:hover {
  border-color: rgba(137, 211, 41, 0.8);
  transform: translateY(-2px);
}

.frame-card.selected {
  border-color: var(--bright-green);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 24px rgba(137, 211, 41, 0.2);
}

.frame-card.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bright-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.frame-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  /* recorta lo que se salga */
  position: relative;
  border-radius: 8px;
}

.frame-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cubre el área sin deformarse */
  display: block;
  margin: 0 auto;
}

.qr-section {
  text-align: center;
  padding: 32px;
}

.qr-code {
  max-width: 330px;
  height: auto;
  margin: 10px auto;
}

.unique-code {
  letter-spacing: 4px;
  font-family: monospace;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
  color: var(--fuchsia);
  text-align: center;
}

.code-label {
  font-size: 1.2rem;
  margin: 0;
}

.second-card {
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  padding: 2rem 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.third-card {
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  padding: 2rem 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.share-section {
  text-align: center;
  padding: 12px 12px 0;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
  color: white;
}

.share-btn:hover {
  transform: scale(1.15);
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.email {
  background: #ea4335;
}

.share-btn.copy {
  background: #6c757d;
}

.share-btn.link {
  background: #0077b5;
}

.toast.success {
  border-left: 8px solid var(--bs-success);
}

.toast.error {
  border-left: 4px solid var(--danger);
}

.toast.info {
  border-left: 4px solid var(--info);
}

.toast.warning {
  border-left: 4px solid var(--warning);
}

.toast-icon {
  font-size: 20px;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
}

.album-stats {
  width: 100%;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px 24px;
  background: rgba(8, 12, 30, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--bright-green);
}

.stat-label {
  font-size: 12px;
  color: var(--beige-bg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--mid-green));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.album-slot {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 2px dashed rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}
.album-slot img {
  border-radius: var(--radius);
}

.album-slot:first-child {
  cursor: unset;
}

.album-slot:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.album-slot.filled {
  border-style: solid;
  border-color: transparent;
  padding: 0;
  overflow: hidden;
}

.album-slot .slot-number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}

.album-slot .slot-icon {
  font-size: 32px;
  opacity: 0.5;
  margin-bottom: 8px;
  color: var(--bright-green);
}

.album-slot .slot-text {
  font-size: 12px;
  color: var(--green);
}

.album-slot .sticker-in-slot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-sticker-name-bar {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background-color: rgba(9, 9, 9, 0.5058823529);
  padding: 0.35rem 0;
}

.album-sticker-name {
  font-size: 0.9rem;
  color: var(--bright-blue);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.album-sticker-department {
  font-size: 0.9rem;
  color: var(--fuchsia);
  text-align: center;
  margin: 0;
  line-height: 1;
}

.badge-added {
  color: #c7c7c7;
  background-color: var(--dark-blue);
  padding: 0.5rem;
  margin: 1.2rem 0 0 0;
}
.badge-added span {
  color: var(--bright-blue);
}

.img-container img {
  max-width: 100%;
}

.cropper-image-input,
.image_input {
  display: none;
}

.modal-content {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.modal-header {
  color: var(--bright-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.modal-body {
  color: #fff;
}

.modal-footer {
  border-top: none;
}

.text-shadow {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(54, 54, 54, 0.8);
}

.info-pwd {
  color: var(--bright-blue);
  font-size: 0.7rem;
}

/*================================== Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.8;
  background-color: var(--fuchsia);
  border-radius: 50%;
  padding: 0.6rem;
  position: relative;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-prev-custom {
  left: 0;
}

.swiper-button-next-custom {
  right: 0;
}

.list-group-stats .list-group-item {
  background-color: rgba(17, 17, 17, 0.6117647059);
  color: var(--bright-green);
  font-size: 0.8rem;
}

.icon-text-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon {
  position: relative;
  top: -2px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #999;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e0e0e0;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.loading {
  text-align: center;
  color: #9c9c9c;
  font-weight: 600;
  display: none;
}

.loading.show {
  display: block;
}

.message {
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
}

.message.show {
  display: block;
}

.message.error {
  background: #fed7d7;
  color: #c53030;
  border: 1px solid #fc8181;
}

.message.success {
  background: #c6f6d5;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.message.info {
  background: #bee3f8;
  color: #2c5282;
  border: 1px solid #90cdf4;
}

.input-section {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .btn-continuar {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }
  .btn-atras {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }
  .frames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 13px 26px;
    padding: 16px 48px;
  }
  .step-circle {
    width: 46px;
    height: 46px;
  }
  .album-stats {
    width: 100%;
    display: flex;
  }
}
@media (min-width: 768px) {
  .brd-end {
    border-right: 2px solid #eee;
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .main-card {
    padding: 1.5rem 1.2rem;
  }
  .step-connector {
    width: 36px;
  }
  .step-label {
    display: none;
  }
  .card-title-main {
    font-size: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */