:root {
    --dark-blue: #0a192f;
    --neon-blue: #00d1ff;
    --neon-green: #00ff9d;
    --neon-yellow: #e6b800;
    --neon-red: #f96262;
    --neon-purple: #9d00ff;
}

/* Alertas Neon */
.alert {
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.1;
    z-index: -1;
}

.alert i {
    margin-right: 10px;
    font-size: 18px;
}

.alert-trial {
    color: var(--neon-green);
    border: 1px solid rgba(0, 230, 184, 0.3);
    animation: pulse-green 2s infinite;
}

.alert-ended {
    color: var(--neon-yellow);
    border: 1px solid rgba(255, 247, 0, 0.3);
    animation: pulse-yellow 2s infinite;
}

.alert-suspended {
    color: var(--neon-red);
    border: 1px solid rgba(199, 5, 5, 0.3);
    animation: pulse-red 2s infinite;
}

.alert-notice {
    color: var(--neon-blue);
    border: 1px solid rgba(0, 134, 230, 0.3);
    animation: pulse-blue 2s infinite;
    -webkit-animation: pulse-blue 2s infinite;
}

.alert-setting {
    max-height: 25px;
    margin: 0px;
    padding: 3px 10px;
}

.alert-setting i {
    font-size: 13px;
}

.alert-setting .message {
    font-size: 13.5px;
}

.alert-trial .message a {
    color: var(--neon-green);
    /* text-decoration: none; */
}

.alert-trial .message a:hover {
    color: var(--neon-green);
    text-decoration: underline;
    cursor: pointer;
}

.alert-ended .message a {
    color: var(--neon-yellow);
    text-decoration: none;
}

.alert-ended .message a:hover {
    color: var(--neon-yellow);
    text-decoration: underline;
    cursor: pointer;
}

.alert-suspended .message a {
    color: var(--neon-red);
    text-decoration: none;
}

.alert-suspended .message a:hover {
    color: var(--neon-red);
    text-decoration: underline;
    cursor: pointer;
}

.alert-notice .message a {
    color: var(--neon-blue);
    text-decoration: none;
}

.alert-notice .message a:hover {
    color: var(--neon-blue);
    text-decoration: underline;
    cursor: pointer;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
    }
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 5px rgba(255, 247, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 247, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 247, 0, 0.3);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 5px rgba(255, 45, 117, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 45, 117, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 45, 117, 0.3);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 5px rgba(45, 108, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(45, 132, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(45, 146, 255, 0.3);
    }
}




/* .button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.modal-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #0f2027;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.4);
}
 */
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.subscription-modal {
    width: 100%;
    max-width: 500px;
    background: rgba(2, 32, 50, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.modal-overlay.active .subscription-modal {
    transform: translateY(0);
}

.modal-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    position: relative;
}

.modal-header h3 {
    color: #00f7ff;
    font-size: 24px;
    font-weight: lighter;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header h3 i {
    margin-right: 10px;
    font-size: 28px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-overlay .close-modal:hover {
    color: #00f7ff;
    transform: rotate(90deg);
}

.modal-overlay .modal-body {
    padding: 25px;
}

.modal-overlay .form-group {
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.modal-overlay .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #b3f0ff;
    font-size: 14px;
}

.modal-overlay .form-group select,
.modal-overlay .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.8);
    /* Cambiado a plomo claro */
    color: white;
    /* Texto blanco */
    transition: all 0.3s ease;
    appearance: none;
}

.modal-overlay .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300f7ff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

.modal-overlay .form-group input:focus,
.modal-overlay .form-group select:focus {
    outline: none;
    border-color: #00f7ff;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.modal-overlay .subscription-type {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.modal-overlay .subscription-type button {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #b3f0ff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-overlay .subscription-type button.active {
    background: linear-gradient(90deg, #00d2ff, #00f7ff);
    color: #0f2027;
}

.modal-overlay .subscription-type button:first-child {
    border-right: 1px solid rgba(0, 247, 255, 0.3);
}

.modal-overlay .total-container {
    background: rgba(0, 247, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    border: 1px solid rgba(0, 247, 255, 0.2);
    text-align: center;
}

.modal-overlay .total-label {
    color: #b3f0ff;
    font-size: 14px;
    margin-bottom: 5px;
}

.modal-overlay .total-amount {
    font-size: 28px;
    font-weight: bold;
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.modal-overlay .savings-badge {
    display: inline-block;
    background: rgba(0, 247, 255, 0.2);
    color: #00f7ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 8px;
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.modal-overlay .modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 247, 255, 0.2);
}

.modal-overlay .subscribe-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00d2ff, #00f7ff);
    color: #0f2027;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-overlay .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.4);
    background: linear-gradient(90deg, #00f7ff, #00d2ff);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-overlay .subscription-modal {
        margin: 0 20px;
    }

    .modal-overlay .modal-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-overlay .modal-body {
        padding: 20px 15px;
    }

    .modal-overlay .total-amount {
        font-size: 24px;
    }

    .modal-overlay .subscription-type button {
        padding: 10px;
        font-size: 14px;
    }
}


/*Modal */
.modal-content {
    width: 100%;
    max-width: 600px;
    background: rgba(2, 32, 50, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    position: relative;
}

.modal-header h3 {
    color: #00f7ff;
    font-size: 22px;
    font-weight: lighter;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.modal-header h3 i {
    margin-right: 10px;
    font-size: 24px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #00f7ff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 247, 255, 0.2);
}

.action-ok-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00d2ff, #00f7ff);
    color: #0f2027;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.4);
    background: linear-gradient(90deg, #00f7ff, #00d2ff);
}


/* Modal 3: Diseño en Acordeón */
.accordion-style .client-summary {
    background: rgba(0, 247, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.client-summary h4 {
    font-weight: normal;
    color: #ffff;
    font-size: 15px;
}

.accordion-style .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.accordion-style span {
    color: #b3f0ff;
}

.accordion-style strong {
    color: #d5f0f7;
}

.accordion-style .payment-accordion {
    margin-top: 20px;
}

.payment-accordion h4 {
    font-weight: normal;
    font-size: 15px;
}

.accordion-style .accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.accordion-style .accordion-header {
    background: rgba(0, 247, 255, 0.05);
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-style .accordion-header h3 {
    margin: 0;
    font-weight: normal;
    color: #b3f0ff;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}

.accordion-style .accordion-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.accordion-style .accordion-content p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    color: #EEE;
    font-size: 14px;
    gap: 8px;
}


.modal-overlay .text-enviar-comprobante {
    color: #b3f0ff;
}