/* crear-perfil.css */
:root {
      --bg-color: #F7F7F7;
      --accent-black: #030102;
      --brand-red: #C60000;
      --extra-red: #C60000;
      --glass-bg: rgba(247, 247, 247, 0.8);
      --green-filled: #24E743;
    }

    body {
      background-color: var(--bg-color);
      margin: 0;
      padding: 50px;
      
      padding-top: 130px;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      box-sizing: border-box;
      color: var(--accent-black);
    }

    
    #main-
    

    .header-left,
    .header-right {
      display: flex;
      align-items: center;
      gap: 25px;
      flex-shrink: 0;
    }

    .header-center {
      flex: 1;
      max-width: 500px;
      margin: 0 40px;
      min-width: 0;
    }

    .search-container {
      position: relative;
      width: 100%;
    }

    .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: #333;
      opacity: 0.5;
      pointer-events: none;
    }

    #header-search {
      width: 100%;
      box-sizing: border-box;
      padding: 10px 10px 10px 40px;
      border-radius: 0;
      border: none;
      border-bottom: 2px solid rgba(3, 1, 2, 0.1);
      background: transparent;
      color: #030102;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      transition: all 0.3s ease;
      outline: none;
    }

    #header-search:focus {
      border-bottom-color: rgba(3, 1, 2, 0.1);
    }

    #header-search:focus~.focus-border,
    #header-search:not(:placeholder-shown)~.focus-border {
      width: 100%;
    }

    .focus-border {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--search-color, #030102);
      transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
      pointer-events: none;
    }

    .header-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      color: #000;
    }

    .header-btn:hover {
      background: rgba(0, 0, 0, 0.05);
      transform: translateY(-1px);
    }

    .header-btn-text {
      background: var(--accent-black);
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease, margin-right 0.4s ease;
      margin-right: max(0px, calc(50vw - 800px - 122px));
    }

    .header-btn-text .mobile-icon {
      display: none;
    }

    @media (max-width: 800px) {

      .header-left,
      .header-right {
        max-width: 200px;
        transition: max-width 0.4s ease, transform 0.4s ease, opacity 0.3s ease;
      }

      .header-center {
        transition: margin 0.4s ease;
      }

      #main-header.mobile-search-active .header-left {
        max-width: 0;
        transform: translateX(-30px);
        opacity: 0;
        overflow: hidden;
      }

      #main-header.mobile-search-active .header-right {
        max-width: 0;
        transform: translateX(30px);
        opacity: 0;
        overflow: hidden;
      }

      #main-header.mobile-search-active .header-center {
        margin: 0;
      }

      .header-btn-text::before {
        display: none !important;
      }

      .header-btn-text .desktop-text {
        display: none;
      }

      .header-btn-text .mobile-icon {
        display: block;
        width: 20px;
        height: 20px;
      }
    }

    .header-logo-link {
      margin-left: max(0px, calc(50vw - 800px - 97.4px));
      transition: margin-left 0.4s ease;
    }

    .header-btn-text:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .profile-btn {
      width: 44px;
      height: 44px;
      box-sizing: border-box;
      padding: 0 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1.5px solid #000;
    }

    
    .content-wrapper {
      width: 100%;
      max-width: 1600px;
      margin-top: 20px;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      grid-auto-flow: dense;
      gap: 30px;
      width: 100%;
      margin-bottom: 80px;
    }

    
    .form-card {
      position: relative;
      background: #fff;
      color: var(--accent-black);
      transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.10);
      cursor: default;
    }

    .form-card:hover {
      transform: scale(1.06) translateZ(0) !important;
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), 0 15px 35px rgba(0, 0, 0, 0.25);
      z-index: 10;
    }

    .form-card-1x1 {
      grid-column: span 1;
      aspect-ratio: 1 / 1;
    }

    .form-card-large {
      grid-column: span 2;
      grid-row: span 2;
      aspect-ratio: 1 / 1;
    }

    .form-card-wide {
      grid-column: span 2;
      position: relative;
    }

    .form-card-wide::before {
      content: "";
      display: block;
      padding-top: calc(50% - 15px);
    }

    .card-padding {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    
    .page-title {
      font-size: 3.8rem;
      font-weight: 900;
      font-style: italic;
      text-transform: uppercase;
      margin: 0;
      letter-spacing: -2px;
      color: var(--accent-black);
      line-height: 0.85;
      grid-column: span 1;
      grid-row: span 1;
      display: flex;
      align-items: center;
      height: 100%;
      max-height: 100%;
      overflow: hidden;
      transition: opacity 0.4s;
    }

    /* =========================================================
       STYLE 8: RETRO 90S OS
       ========================================================= */
    .style-8 {
      background: #C0C0C0;
      border-top: 2px solid #FFF;
      border-left: 2px solid #FFF;
      border-right: 2px solid #000;
      border-bottom: 2px solid #000;
      padding: 3px;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
      font-family: 'Trebuchet MS', sans-serif;
    }

    .style-8 .title-bar {
      background: #000080;
      color: #fff;
      padding: 5px 10px;
      font-weight: bold;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .style-8 .title-bar-btns {
      display: flex;
      gap: 2px;
    }

    .style-8 .tb-btn {
      width: 16px;
      height: 16px;
      background: #C0C0C0;
      border-top: 1px solid #fff;
      border-left: 1px solid #fff;
      border-right: 1px solid #000;
      border-bottom: 1px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-size: 10px;
      cursor: default;
    }

    .style-8 .content-area {
      padding: 10px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: center;
    }

    .style-8 .toggle-wrap {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .style-8 .toggle-opt {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      cursor: pointer;
      color: #000;
    }

    .style-8 .radio-fake {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border-top: 1px solid #000;
      border-left: 1px solid #000;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .style-8 .toggle-opt.active .radio-fake::after {
      content: '';
      width: 6px;
      height: 6px;
      background: #000;
      border-radius: 50%;
    }

    .style-8 input {
      width: 100%;
      border-top: 2px solid #808080;
      border-left: 2px solid #808080;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      background: #fff;
      padding: 10px 6px;
      margin-bottom: 15px;
      font-family: 'Courier New', monospace;
      font-size: 1rem;
      font-weight: bold;
      outline: none;
      box-sizing: border-box;
      color: #000;
    }

    .style-8 .btn-submit {
      margin-top: auto;
      background: #C0C0C0;
      color: #000;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      border-right: 2px solid #000;
      border-bottom: 2px solid #000;
      padding: 12px;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      font-family: inherit;
    }

    .style-8 .btn-submit:active {
      border-top: 2px solid #000;
      border-left: 2px solid #000;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      padding: 13px 11px 11px 13px;
    }

    .style-8 .btn-submit.success {
      background: #24E743 !important;
    }

    .style-8 .social-wrap {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .style-8 .social-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #C0C0C0;
      color: #000;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      border-right: 2px solid #000;
      border-bottom: 2px solid #000;
      padding: 8px;
      font-size: 12px;
      font-weight: bold;
      cursor: pointer;
    }

    .style-8 .social-btn:active {
      border-top: 2px solid #000;
      border-left: 2px solid #000;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
    }

    .style-8 .social-btn.google {
      color: #DB4437;
    }

    .style-8 .social-btn.facebook {
      color: #4267B2;
    }

    .style-8 .social-icon {
      width: 16px;
      height: 16px;
    }

    
    .form-card-1x1.style-8 .content-area {
      padding: 12px 18px;
    }

    .form-card-1x1.style-8 input {
      padding: 6px;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .form-card-1x1.style-8 .toggle-wrap {
      margin-bottom: 12px;
    }

    .form-card-1x1.style-8 .action-row {
      display: flex;
      gap: 8px;
      margin-top: auto;
    }

    .form-card-1x1.style-8 .action-row .btn-submit {
      flex: 2;
      margin-top: 0;
      padding: 8px;
      font-size: 1rem;
    }

    .form-card-1x1.style-8 .action-row .social-wrap {
      flex: 1;
      margin-top: 0;
      gap: 6px;
    }

    .form-card-1x1.style-8 .social-btn {
      font-size: 0;
      padding: 4px;
    }

    .form-card-1x1.style-8 .social-icon {
      width: 18px;
      height: 18px;
    }

    
    .step-2-card {
      display: none;
    }

    .step-2-card.visible {
      display: flex;
      opacity: 1;
      transform: translateY(0);
      animation: slideUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) backwards;
    }

    .step-2-card:nth-child(3) {
      animation-delay: 0.1s;
    }

    .step-2-card:nth-child(4) {
      animation-delay: 0.2s;
    }

    .step-2-card:nth-child(5) {
      animation-delay: 0.3s;
    }

    .step-2-card:nth-child(6) {
      animation-delay: 0.4s;
    }

    .step-2-card:nth-child(7) {
      animation-delay: 0.5s;
    }

    .step-2-card:nth-child(8) {
      animation-delay: 0.6s;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    #card-icons {
      background: #D1D1D1 !important;
      color: #030102 !important;
    }

    #card-icons .card-padding {
      padding-top: 15px !important;
    }

    #card-icons .card-title {
      font-family: 'Bebas Neue', cursive;
      font-size: 2.2rem;
      letter-spacing: 1px;
      color: #1654B9;
      overflow: visible;
      padding-right: 5px;
      margin: 0;
    }

    .icon-badge-option {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 -30px;
      padding: 8px 30px;
      cursor: pointer;
      transition: color 0.3s ease;
      color: #030102;
      user-select: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .icon-badge-option::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #1654B9;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      z-index: -1;
    }

    .icon-badge-option:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05);
    }

    .icon-badge-option.active {
      color: #FFFFFF !important;
    }

    .icon-badge-option.active::before {
      transform: translateX(0);
    }

    .icon-badge-icon-wrap {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: inherit;
    }

    .icon-badge-icon-wrap svg,
    .icon-badge-icon-wrap i {
      width: 22px;
      height: 22px;
      color: inherit;
    }

    .icon-badge-text {
      flex: 1;
      min-width: 0;
      color: inherit;
      text-align: left;
    }

    .icon-badge-text strong {
      display: block;
      font-family: 'Bebas Neue', cursive;
      font-size: 1.3rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.1;
      color: inherit;
    }

    .icon-badge-text span {
      display: block;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.65rem;
      opacity: 0.7;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: inherit;
      margin-top: 2px;
    }

    .icon-badge-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid rgba(3, 1, 2, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }

    .icon-badge-option.active .icon-badge-check {
      background: #fff;
      border-color: #fff;
    }

    .icon-badge-check svg {
      display: none;
    }

    .icon-badge-option.active .icon-badge-check svg {
      display: block;
      stroke: #1654B9;
    }

    
    .font-grid {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
    }

    .font-chip {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: flex 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
      filter: brightness(1);
      box-shadow: none;
    }

    #card-font:hover .font-chip:not(.selected) {
      filter: brightness(0.75);
      box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.6);
    }

    #card-font:hover .font-chip:not(.selected):hover {
      filter: brightness(0.9);
    }

    .font-chip.selected {
      flex: 1.5;
      filter: brightness(1) !important;
      box-shadow: none !important;
    }

    .font-chip-preview {
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 400;
    }

    
    #card-desc {
      background: #FEFF9C;
      color: #030102;
      box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.15);
      position: relative;
      transform: rotate(-1deg);
      border-bottom-right-radius: 30px 10px;
    }

    #card-desc .tape {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%) rotate(1deg);
      width: 120px;
      height: 30px;
      background: rgba(255, 255, 255, 0.5);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      z-index: 2;
    }

    #card-desc textarea {
      width: 100%;
      height: 100%;
      background: transparent;
      border: none;
      resize: none;
      font-family: 'Permanent Marker', cursive;
      font-size: 1.3rem;
      line-height: 1.3;
      color: #030102;
      outline: none;
    }

    #card-desc textarea::placeholder {
      color: rgba(3, 1, 2, 0.3);
    }

    
    @media (max-width: 800px) {
      .header-right {
        display: flex !important;
      }

      
      #view-auth,
      #view-profile {
        padding: 90px 15px 20px 15px !important;
      }

      .page-top-left-logo {
        transform: scale(0.85);
        transform-origin: left center;
      }

      .content-wrapper {
        padding: 0;
        min-height: auto;
      }

      .social-btns {
        flex-direction: column;
      }

      .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .page-title {
        font-size: 2.8rem;
      }

      
      #auth-card {
        min-height: 0 !important;
      }

      #auth-card .content-area {
        padding: 12px 10px !important;
      }

      #auth-card .content-area>div:nth-child(1) {
        margin-bottom: 12px !important;
      }

      #top-instruction-text {
        font-size: 10px !important;
      }

      #auth-card .toggle-opt {
        font-size: 10px !important;
        gap: 3px !important;
      }

      #auth-card .radio-fake {
        width: 10px !important;
        height: 10px !important;
      }

      #lbl-usuario,
      #lbl-password,
      #email-group label {
        width: 60px !important;
        font-size: 11px !important;
      }

      #input-user,
      #input-password,
      #input-email {
        height: 24px !important;
        font-size: 11px !important;
        padding: 4px !important;
      }

      #btn-validate {
        height: 24px !important;
        font-size: 11px !important;
        padding: 4px !important;
      }

      #btn-google-sso {
        min-height: 24px !important;
        font-size: 9px !important;
        padding: 4px !important;
        gap: 4px !important;
      }

      #btn-google-sso img {
        height: 12px !important;
      }

      #auth-right-buttons {
        width: 110px !important;
        gap: 6px !important;
      }

      #auth-card .content-area>div:nth-child(2) {
        gap: 10px !important;
      }

      #auth-card .content-area>div:nth-child(2)>div:first-child {
        gap: 6px !important;
      }

      #btn-check-username {
        font-size: 8px !important;
        padding: 4px !important;
        margin-top: 4px !important;
      }

      
      #card-photo .card-padding {
        padding: 8px 8px 0px 8px !important;
      }

      #card-photo .card-padding>div:last-child {
        padding: 8px 2px 10px 2px !important;
      }

      #handle-display {
        font-size: 1rem !important;
      }

      #upload-icon {
        width: 24px !important;
        height: 24px !important;
      }

      #hover-overlay i {
        width: 16px !important;
        height: 16px !important;
      }

      #hover-overlay span {
        font-size: 0.6rem !important;
      }

      
      #card-font>div:first-child {
        height: 50px !important;
        padding: 0 12px !important;
      }

      #font-card-title {
        transform: scale(0.6) !important;
        transform-origin: left center !important;
      }

      .font-chip {
        min-width: 0 !important;
      }

      .font-chip-preview {
        transform: scale(0.6) !important;
      }

      
      #card-icons .card-padding {
        padding: 12px 12px 6px 12px !important;
      }

      #card-icons .card-header {
        margin-bottom: 6px !important;
      }

      #card-icons .card-title {
        font-size: 1.5rem !important;
      }

      #card-icons .fields-container {
        gap: 4px !important;
      }

      .icon-badge-option {
        gap: 6px !important;
        margin: 0 -12px !important;
        padding: 4px 12px !important;
      }

      .icon-badge-text strong {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
      }

      .icon-badge-text span {
        font-size: 0.42rem !important;
        letter-spacing: -0.2px !important;
        line-height: 1 !important;
        margin-top: 1px !important;
      }

      .icon-badge-icon-wrap img,
      .icon-badge-icon-wrap i,
      .icon-badge-icon-wrap svg {
        width: 14px !important;
        height: 14px !important;
      }

      .icon-badge-check {
        width: 14px !important;
        height: 14px !important;
      }

      .icon-badge-check svg {
        width: 8px !important;
        height: 8px !important;
      }

      
      #card-extra-imgs .left-half,
      #card-extra-imgs .right-half {
        width: 100% !important;
      }

      #card-extra-imgs .card-padding {
        flex-direction: column !important;
        height: auto !important;
      }

      #card-extra-imgs .left-half {
        padding: 12px 8px !important;
        gap: 6px !important;
        justify-content: center !important;
      }

      #card-extra-imgs .card-title {
        font-size: 1.2rem !important;
      }

      #card-extra-imgs p {
        font-size: 0.65rem !important;
      }

      #extra-img-drop {
        height: 30px !important;
        padding: 0 10px !important;
        gap: 6px !important;
      }

      #extra-img-drop span {
        font-size: 0.7rem !important;
      }

      #extra-upload-icon {
        width: 16px !important;
        height: 16px !important;
      }

      #card-extra-imgs .right-half {
        padding: 12px !important;
        min-height: 80px !important;
      }

      #extra-header-row h3 {
        font-size: 0.8rem !important;
      }

      #extra-count-text {
        font-size: 0.65rem !important;
      }

      #extra-empty-msg p {
        font-size: 0.65rem !important;
      }

      
      #card-notepad .notepad-header {
        padding: 4px 6px !important;
      }

      #card-notepad .notepad-header span {
        font-size: 0.6rem !important;
      }

      #card-notepad .notepad-menu {
        padding: 2px 6px !important;
        gap: 8px !important;
      }

      #card-notepad .notepad-menu span {
        font-size: 0.55rem !important;
      }

      #bio-input {
        font-size: 0.8rem !important;
        padding: 8px !important;
      }

      #card-notepad>div:last-child>div:last-child {
        font-size: 0.6rem !important;
        padding: 3px 6px 3px 0 !important;
      }

      
      .style-1.step-2-card .card-padding {
        padding: 12px 10px !important;
      }

      .style-1.step-2-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        padding-bottom: 6px !important;
      }

      .style-1.step-2-card h3 i,
      .style-1.step-2-card h3 svg {
        width: 18px !important;
        height: 18px !important;
      }

      .notif-pref-toggle {
        padding: 8px 10px !important;
      }

      .notif-pref-toggle .notif-content {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
      }

      .notif-pref-toggle .notif-time {
        display: none !important;
      }

      
      #regenerate-qr-card .card-padding {
        padding: 12px 10px !important;
      }
      #regenerate-qr-card h2 {
        font-size: 1.2rem !important;
      }
      #regenerate-qr-card p:first-of-type {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
      }
      #regenerate-qr-card p:last-of-type {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        margin-bottom: 6px !important;
      }
      #regenerate-qr-card button {
        padding: 6px 8px !important;
        font-size: 0.65rem !important;
      }
      #regenerate-qr-card i,
      #regenerate-qr-card svg {
        width: 16px !important;
        height: 16px !important;
      }

      
      .page-title.edit-mode-title {
        font-size: 2.1rem !important;
      }

      
      #toggle-qr-card .card-padding {
        padding: 12px 10px !important;
      }
      #toggle-qr-card h2 {
        font-size: 1.2rem !important;
      }
      #toggle-qr-card p:first-of-type {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
      }
      #toggle-qr-card p:last-of-type {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        margin-bottom: 6px !important;
      }
      #toggle-qr-card i,
      #toggle-qr-card svg {
        width: 16px !important;
        height: 16px !important;
      }

      
      #gafette-design-card .card-padding {
        padding: 12px 10px !important;
      }
      #gafette-design-card h2 {
        font-size: 1.2rem !important;
      }
      #gafette-design-card p {
        font-size: 0.75rem !important;
        line-height: 1.1 !important;
        margin-bottom: 4px !important;
      }
      #gafette-design-card i,
      #gafette-design-card svg {
        width: 16px !important;
        height: 16px !important;
      }
      .design-option {
        padding: 4px 6px !important;
        gap: 4px !important;
      }
      .design-option span {
        font-size: 0.65rem !important;
      }

      
      #delete-profile-card .card-padding {
        padding: 12px 15px !important;
      }
      #delete-profile-card h2 {
        font-size: 1.4rem !important;
      }
      #delete-profile-card p:first-of-type {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
      }
      #delete-profile-card p:last-of-type {
        font-size: 0.7rem !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
      }
      #delete-profile-card button {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
      }
      #delete-profile-card i,
      #delete-profile-card svg {
        width: 20px !important;
        height: 20px !important;
      }
    }

    :root {
      --bg-color: #F7F7F7;
      --accent-black: #030102;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      background-color: var(--bg-color);
      margin: 0;
      padding: 0;
      padding-top: 50px;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: var(--accent-black);
      overflow-x: hidden;
      min-height: 100vh;
      transition: padding-top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    body.header-active-top {
      padding-top: 130px;
    }

    /* =========================================
       HEADER (From Design-Test)
       ========================================= */
    #main-
    

    #main-header.header-hidden {
      transform: translateY(-100%);
      opacity: 0;
    }

    .header-left,
    .header-right {
      display: flex;
      align-items: center;
      gap: 25px;
      flex-shrink: 0;
    }

    .header-center {
      flex: 1;
      max-width: 500px;
      margin: 0 40px;
      min-width: 0;
    }

    .search-container {
      position: relative;
      width: 100%;
    }

    .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: #333;
      opacity: 0.5;
      pointer-events: none;
    }

    

    .header-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      color: #000;
    }

    .header-btn:hover {
      background: rgba(0, 0, 0, 0.05);
      transform: translateY(-1px);
    }

    .header-btn-text {
      background: #000;
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .header-btn-text:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .profile-btn {
      border: 1.5px solid #000;
    }

    /* =========================================
       PROFILE DASHBOARD GRID
       ========================================= */
    .profile-dashboard {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(2, 300px);
      gap: 30px;
      max-width: 1600px;
      margin: 120px auto 50px;
      padding: 0 50px;
    }

    #main-profile-card-wrapper {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
      position: relative;
    }

    #main-profile-card {
      width: 100%;
      height: 100%;
    }

    #stat-card-1 {
      grid-column: 3;
      grid-row: 1;
    }

    #stat-card-2 {
      grid-column: 3;
      grid-row: 2;
    }

    .gafette-wrapper {
      grid-column: 4 / 6;
      grid-row: 1 / 3;
    }

    /* =========================================
       CARDS (From Design-Test)
       ========================================= */
    .card {
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.10);
      border: none;
      transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease;
      cursor: pointer;
      position: relative;
      background: #fff;
      --custom-hover-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), 0 15px 35px rgba(0, 0, 0, 0.25);
      flex-shrink: 0;
    }

    .card:hover {
      transform: scale(1.06) translateZ(0);
      box-shadow: var(--custom-hover-shadow);
      z-index: 10;
    }

    .card-small {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
    }

    .card-medium {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
    }

    .card-medium-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
    }

    .card-large {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
    }

    /* =========================================
       PROFILE SIDEBAR
       ========================================= */
    .profile-sidebar {
      position: absolute;
      left: -80px;
      top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 20;
    }

    .profile-sidebar-btn {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #030102;
      transition: all 0.2s ease;
      text-decoration: none;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .profile-sidebar-btn:hover {
      transform: scale(1.15);
      color: #C60000;
    }

    .profile-sidebar-btn:hover .sidebar-icon {
      color: #C60000;
    }

    .sidebar-icon {
      width: 24px;
      height: 24px;
    }

    @media (max-width: 1200px) {
      .profile-sidebar {
        left: -20px;
        top: -70px;
        flex-direction: row;
      }
    }

    .color-block {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      background-color: #ddd;
      color: #333;
    }

    .image-block {
      overflow: hidden;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-small .color-block {
      width: 100%;
      height: 50%;
      padding: 20px;
    }

    .card-small .image-block {
      width: 100%;
      height: 50%;
    }

    .card-medium-content .color-block {
      width: 50%;
      height: 100%;
      padding: 25px;
    }

    .card-medium-content .image-block {
      width: 50%;
      height: 100%;
    }

    .card-large .color-block {
      width: 100%;
      height: 40%;
      padding: 40px;
    }

    .card-large .image-block {
      width: 100%;
      height: 60%;
    }

    .color-block-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 15px;
      flex-grow: 1;
      overflow: hidden;
    }

    .card-title-container {
      flex: 1;
      height: 100%;
      display: flex;
      align-items: flex-start;
      overflow: hidden;
    }

    .card-title {
      margin: 0;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 700;
      font-style: italic;
      text-transform: uppercase;
      word-break: normal;
      overflow-wrap: normal;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
    }

    .card-small .card-title {
      -webkit-line-clamp: 4;
      font-size: 1.1rem;
    }

    .card-medium .card-title {
      -webkit-line-clamp: 6;
      font-size: 1.4rem;
    }

    .card-large .card-title {
      -webkit-line-clamp: 7;
      font-size: 2.2rem;
    }

    .card-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
      font-family: 'Courier New', Courier, monospace;
      font-weight: bold;
      flex-shrink: 0;
      gap: 6px;
    }

    .card-small .card-meta {
      font-size: 0.9rem;
      gap: 4px;
    }

    .card-medium .card-meta {
      font-size: 1.0rem;
      gap: 6px;
    }

    .card-large .card-meta {
      font-size: 1.15rem;
      gap: 8px;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .card-icons {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: 15px;
      flex-shrink: 0;
    }

    .descriptor-icons {
      display: flex;
      align-items: center;
    }

    .card-small .descriptor-icons {
      gap: 8px;
    }

    .card-medium .descriptor-icons {
      gap: 12px;
    }

    .card-large .descriptor-icons {
      gap: 16px;
    }

    .card-icon {
      background-color: transparent;
    }

    .card-small .card-icon {
      width: 22px;
      height: 22px;
    }

    .card-medium .card-icon {
      width: 26px;
      height: 26px;
    }

    .card-large .card-icon {
      width: 32px;
      height: 32px;
    }

    .plus18-icon {
      -webkit-mask: url(/static/+18.svg) no-repeat center / contain;
      mask: url(/static/+18.svg) no-repeat center / contain;
      background-color: currentColor;
    }

    .meta-icon {
      width: 14px;
      height: 14px;
    }

    /* =========================================
       GAFETTE (From Perfil-Test3)
       ========================================= */
    .gafette-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .id-badge-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .lanyard-clip {
      width: 40px;
      height: 60px;
      border: 6px solid #888;
      border-radius: 20px;
      margin-bottom: -15px;
      z-index: 5;
      background: transparent;
      box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5);
    }

    .id-card {
      width: 340px;
      height: 541px;
      
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      justify-content: flex-start;
    }

    .id-card:hover {
      transform: translateY(-10px) rotate(1deg);
    }

    .id-hole {
      width: 60px;
      height: 15px;
      background: var(--bg-color);
      border-radius: 10px;
      position: absolute;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .id-header-band {
      background: #C60000;
      color: #fff;
      padding: 45px 0 15px 0;
      text-align: center;
      font-family: 'Bebas Neue', cursive;
      font-size: 2.5rem;
      letter-spacing: 5px;
      line-height: 1;
      flex-shrink: 0;
    }

    .id-content {
      padding: 30px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
      position: relative;
    }

    .id-photo-container {
      width: 130px;
      height: 170px;
      border: 3px solid #030102;
      padding: 4px;
      background: #fff;
    }

    .id-photo-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.5);
    }

    .id-data {
      display: flex;
      flex-direction: column;
      gap: 15px;
      font-family: 'Courier New', Courier, monospace;
    }

    .data-row {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .data-label {
      font-size: 0.75rem;
      font-weight: bold;
      color: #888;
      text-transform: uppercase;
    }

    .data-value {
      font-size: 1.3rem;
      font-weight: 900;
      color: #030102;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }

    .id-barcode {
      font-family: 'Libre Barcode 39', cursive;
      font-size: 5rem;
      text-align: center;
      line-height: 0.8;
      margin-top: 10px;
      color: #030102;
    }

    .stamp {
      position: absolute;
      border: 4px solid;
      font-family: 'Bebas Neue', cursive;
      font-size: 2rem;
      padding: 5px 15px;
      border-radius: 4px;
      transform: rotate(-15deg);
      opacity: 0.8;
      pointer-events: none;
    }

    .stamp.verified {
      color: #24E743;
      border-color: #24E743;
      top: 130px;
      right: 20px;
    }

    /* =========================================
       CAROUSEL SECTION
       ========================================= */
    .carousel-section {
      width: 100%;
      padding: 50px 0;
      margin-top: 50px;
      scroll-margin-top: 150px;
    }

    .carousel-
    

    .carousel-header>div:first-child {
      display: flex;
      justify-content: flex-start;
    }

    .carousel-title {
      font-size: 2rem;
      font-weight: 900;
      font-style: italic;
      text-transform: uppercase;
      margin: 0;
      letter-spacing: -1px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .title-icon {
      width: 28px;
      height: 28px;
      color: #C60000;
      fill: #C60000;
      margin-bottom: 4px;
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      gap: 15px;
      background: transparent;
      padding: 8px 16px;
    }

    .carousel-pause-btn {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #030102;
      padding: 8px;
      border-radius: 50%;
      transition: background-color 0.2s ease;
    }

    .carousel-pause-btn:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .pause-icon {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .carousel-progress-bar {
      width: 150px;
      height: 4px;
      background: rgba(3, 1, 2, 0.1);
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    .progress-thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 30px;
      background: #030102;
      border-radius: 2px;
      will-change: transform;
    }

    @media (max-width: 800px) {
      .carousel-
      

      .carousel-header>div:first-child {
        justify-content: center;
      }

      .carousel-header>div:last-child {
        display: none;
      }
    }

    .carousel-container {
      width: 100%;
      overflow: hidden;
      
      cursor: grab;
      
      padding-top: 150px;
      padding-bottom: 150px;
      margin-top: -150px;
      margin-bottom: -150px;
    }

    .carousel-container:active {
      cursor: grabbing;
    }

    .carousel-track {
      display: grid;
      grid-template-rows: repeat(2, 300px);
      grid-auto-columns: 300px;
      grid-auto-flow: column dense;
      gap: 30px;
      width: max-content;
      will-change: transform;
      align-items: start;
    }

    
    .carousel-track .card-small {
      grid-column: span 1;
      grid-row: span 1;
      width: 100%;
      height: 100%;
    }

    .carousel-track .card-medium {
      grid-column: span 2;
      grid-row: span 1;
      width: 100%;
      height: 100%;
    }

    .carousel-track .card-large {
      grid-column: span 2;
      grid-row: span 2;
      width: 100%;
      height: 100%;
    }

    /* ===============================
       STAT CARDS STYLES (19A & 21A)
       =============================== */
    
    .style-19 {
      background: #F7F7F7;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .style-19 .top-hero {
      height: 65%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 15px;
      position: relative;
    }

    .style-19 .top-hero .label {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }

    .style-19 .top-hero .num {
      font-size: 8rem;
      font-weight: 900;
      line-height: 0.7;
      letter-spacing: -4px;
      align-self: flex-end;
    }

    .style-19 .top-hero::after {
      display: none;
    }

    .style-19 .bottom-grid {
      height: 35%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
    }

    .style-19 .b-stat {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 10px;
    }

    .style-19 .b-stat .b-num {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
    }

    .style-19 .b-stat .b-label {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      margin-top: 5px;
      letter-spacing: -0.5px;
    }

    
    .style-19a {
      background: var(--c1-base, #030102);
    }

    .style-19a .top-hero {
      background: var(--c1-base, #F7F7F7);
      color: var(--c1-base-text, #fff);
    }

    .style-19a .b-stat {
      border-right: none;
    }

    .style-19a .b-stat:nth-child(1) {
      background: var(--c1-dark);
      color: var(--c1-dark-text);
    }

    .style-19a .b-stat:nth-child(2) {
      background: var(--c1-light);
      color: var(--c1-light-text);
    }

    .style-19a .b-stat:nth-child(3) {
      background: var(--c1-dark);
      color: var(--c1-dark-text);
    }

    .style-19a .top-hero .num {
      font-size: 10rem;
      transform: translateX(20px) translateY(15px);
    }

    
    .style-21 {
      display: flex;
      flex-direction: row;
      height: 100%;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .style-21 .left-panel {
      width: 70%;
      display: flex;
      flex-direction: column;
      border-right: none;
    }

    .style-21 .left-top {
      flex: 7;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
    }

    .style-21 .left-top .l-num {
      font-size: 6rem;
      font-weight: 900;
      line-height: 0.8;
      letter-spacing: -3px;
    }

    .style-21 .left-top .l-label {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-top: 10px;
      letter-spacing: -0.5px;
    }

    .style-21 .left-bottom {
      flex: 3;
      border-top: none;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }

    .style-21 .left-bottom span {
      font-size: 1.5rem;
      font-weight: 900;
      font-family: 'Helvetica Neue', sans-serif;
    }

    .style-21 .right-panel {
      width: 30%;
      background: transparent;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .style-21 .r-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 10px;
    }

    .style-21 .r-block .r-num {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
    }

    .style-21 .r-block .r-label {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-top: 5px;
      text-align: center;
      letter-spacing: -0.5px;
    }

    
    .style-21a .left-top {
      background: var(--c2-base, #F7F7F7);
      color: var(--c2-base-text, #fff);
    }

    .style-21a .left-bottom {
      background: var(--c2-dark, #030102);
      color: var(--c2-dark-text, #F7F7F7);
    }

    .style-21a .left-bottom span {
      color: var(--c2-light, #F8961E);
    }

    .style-21a .r-block:nth-child(1) {
      background: var(--c2-accent, #F72585);
      color: var(--c2-accent-text, #fff);
    }

    .style-21a .r-block:nth-child(2) {
      background: var(--c2-light, #4CC9F0);
      color: var(--c2-light-text, #fff);
    }

    .style-21a .r-block:nth-child(3) {
      background: var(--c2-dark, #F8961E);
      color: var(--c2-dark-text, #fff);
    }

    
    body {
      overflow-x: hidden;
    }

    #view-auth {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      min-height: 100vh;
      transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
      padding: 50px;
      padding-top: 130px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
      background-color: #F7F7F7;
    }

    #view-profile {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      min-height: 100vh;
      transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease;
      display: none;
      opacity: 0;
      transform: translateY(100vh);
      
      z-index: 1;
      background-color: #F7F7F7;
      padding-bottom: 100px;
    }

    #view-profile.active {
      display: block;
      
    }

    
    body {
      padding: 0 !important;
    }

    
    #transition-clone-layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 9999;
      display: none;
    }

/* crear-perfil-2.css */
.btn-dark-official {
              background-color: #fdfdfc;
              color: #030102;
              border: 2px solid #030102;
              box-shadow: 4px 4px 0px #030102;
              border-radius: 8px;
              padding: 10px 16px;
              font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
              font-weight: bold;
              font-size: 0.9rem;
              cursor: pointer;
              transition: transform 0.1s, box-shadow 0.1s;
              text-transform: uppercase;
            }

            .btn-dark-official:active {
              transform: translate(2px, 2px);
              box-shadow: 2px 2px 0px #030102;
            }

            .btn-dark-official:hover {
              background: var(--gold, #A3834F);
              color: #121011;
              transform: translate(-2px, -2px);
              box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
            }

/* crear-perfil-3.css */
@keyframes borderGlow {
              0% {
                background-position: 0% 50%;
              }

              50% {
                background-position: 100% 50%;
              }

              100% {
                background-position: 0% 50%;
              }
            }

            .qr-enabled-border {
              position: relative;
              background: transparent !important;
              border: none !important;
            }

            .qr-enabled-border::before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              padding: 4px;
              border-radius: inherit;
              background: linear-gradient(45deg, #03ACED, #0000FE, #EA028A, #EA0200, #FFF001, #24E743);
              background-size: 300% 300%;
              animation: borderGlow 4s ease infinite;
              -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
              -webkit-mask-composite: xor;
              mask-composite: exclude;
              z-index: 1;
              pointer-events: none;
            }

            .qr-disabled-border {
              border: 2px solid #ccc !important;
              background: #fff !important;
              transition: border 0.3s ease, background 0.3s ease;
            }

            .switch-qr {
              position: relative;
              display: inline-block;
              width: 54px;
              height: 30px;
            }

            .switch-qr input {
              opacity: 0;
              width: 0;
              height: 0;
            }

            .slider-qr {
              position: absolute;
              cursor: pointer;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              background-color: #ccc;
              transition: .4s;
              border-radius: 34px;
            }

            .slider-qr:before {
              position: absolute;
              content: "";
              height: 22px;
              width: 22px;
              left: 4px;
              bottom: 4px;
              background-color: white;
              transition: .4s;
              border-radius: 50%;
            }

            input:checked+.slider-qr {
              background-color: #030102;
            }

            input:checked+.slider-qr:before {
              transform: translateX(24px);
            }

            
            .switch-qr input[type="checkbox"] {
              opacity: 0 !important;
              width: 0 !important;
              height: 0 !important;
              margin: 0 !important;
              position: absolute !important;
            }

            .qr-card-half {
              flex: 1 1 50%;
              min-width: 280px;
              box-sizing: border-box;
              display: flex;
              flex-direction: column;
              padding: 20px;
              align-items: flex-start;
              z-index: 2;
            }

            @media (max-width: 768px) {
              .qr-card-left-half {
                border-right: none !important;
                border-bottom: 1px dashed #ccc;
              }
            }

/* crear-perfil-4.css */
#collision-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      align-items: center;
      justify-content: center;
    }

    .collision-content {
      background: #fff;
      border: 3px solid #000;
      padding: 30px;
      text-align: center;
      width: 90%;
      max-width: 400px;
      box-shadow: 8px 8px 0 #000;
    }

    .collision-title {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .collision-btn {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      border: 3px solid #000;
      font-size: 1.1rem;
      font-weight: 800;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.2s ease;
      background: #bae1ff;
    }

    .collision-btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 #000;
    }

    .collision-btn.official {
      background: #ffb3ba;
    }
