 /* Fondo overlay */
 .welcome-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9999;
   animation: welcomeFadeIn 0.3s ease-out;
 }


 /* Logo */
 .welcome-modal img {
   height: auto;
   margin-bottom: 1.5rem;
 }


 /* Modal centrado */
 .welcome-modal {
   background: #fff;
   padding: 1.5rem 5.75rem;
   border-radius: 12px;
   max-width: 650px;
   width: 90%;
   text-align: center;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
   animation: welcomeSlideUp 0.4s ease-out;
 }

 /* Texto principal */
 .welcome-modal p {
   font-size: 1rem;
   color: #0B3043 !important;
   margin-bottom: 1rem;
   line-height: 1.4;
 }

 /* Separador visual en beneficios */
 .welcome-modal p br+br {
   display: none;
 }

 .welcome-modal p::after {
   content: "";
   display: block;
   margin-top: 0.5rem;
 }

 /* Botones */
 .welcome-modal .btn {
   display: block;
   width: 100%;
   padding: 0.75rem;
   font-weight: 500;
   border-radius: 8px;
   transition: all 0.3s ease;
 }

 /* Botón primario */
 .welcome-modal .btn-primary {
   background-color: #EB5C3A;
   border: none;
   color: #fff;
 }

 #welcome-login.btn.btn-primary:hover {
   background-color: #0B3043 !important;
 }

 /* Botón secundario */
 .welcome-modal .btn-secondary {
   background-color: #fff;
   border: 2px solid #EB5C3A;
   color: #EB5C3A;
   text-transform: none;
 }


 .welcome-modal .btn-secondary:hover {
   border-color: #EB5C3A;
   color: #EB5C3A;
 }

 /* Mensaje final */
 .welcome-modal .small {
   font-size: 0.85rem;
   color: #0B3043 !important;
   margin-top: 1rem;
 }

 .welcome-buttons {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-bottom: 1.5rem;
 }

 .welcome-buttons .btn-primary:hover,
 .welcome-buttons .btn-secondary:hover {
   background-color: #0B3043 !important;
   border-color: #0B3043 !important;
 }

 .welcome-buttons .btn {
   flex: 1;
   padding: 0.75rem;
   font-weight: 500;
   border-radius: 40px;
   text-align: center;
 }

 .welcome-modal p.highlight {
   font-size: 1.3rem;
   font-weight: 700 !important;
   color: #0B3043 !important;
   line-height: 1.5;
   margin-bottom: -5px;
 }

 .welcome-modal .compra-strong {
   font-weight: 700;
   font-size: 0.9rem;
   color: #0B3043 !important;
 }


 @media (max-width: 768px) {
   .welcome-modal {
     width: 100% !important;
     max-width: 95% !important;
     min-width: 0 !important;
     padding: 1rem 1.25rem !important;
     border-radius: 8px !important;
     box-sizing: border-box !important;
     position: relative !important;
     left: auto !important;
     right: auto !important;
     transform: none !important;
   }

   .welcome-buttons {
     flex-direction: column !important;
     gap: 0.75rem !important;
     width: 100% !important;
   }

   .welcome-buttons .btn {
     width: 100% !important;
   }

   .welcome-modal p {
     font-size: 0.7rem;
     line-height: 1.4;
     margin-bottom: 1rem;
   }

   .welcome-modal p.highlight {
     font-size: 0.9rem;
     line-height: 1.3;
     margin-bottom: 0.75rem;
   }

   .welcome-modal .small {
     font-size: 0.8rem;
     margin-top: 1rem;
   }
 }