/home/suroeste/public_html/payments.transportessuroeste.com/public/assets/css
Edit: /home/suroeste/public_html/payments.transportessuroeste.com/public/assets/css/payment-response.css (15217B)
/* ============================================================================
TRANSPORTES SUROESTE - PAYMENT PAGES
Diseño elegante y moderno
============================================================================ */
:root {
--primary: #0f766e;
--primary-dark: #0d9488;
--success: #059669;
--success-light: #10b981;
--warning: #d97706;
--warning-light: #f59e0b;
--danger: #dc2626;
--danger-light: #ef4444;
--info: #2563eb;
--info-light: #3b82f6;
--dark: #0f172a;
--gray-900: #111827;
--gray-800: #1f2937;
--gray-700: #374151;
--gray-600: #4b5563;
--gray-500: #6b7280;
--gray-400: #9ca3af;
--gray-300: #d1d5db;
--gray-200: #e5e7eb;
--gray-100: #f3f4f6;
--gray-50: #f9fafb;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(ellipse at 20% 20%, rgba(14, 165, 157, 0.15) 0%, transparent 50%),
radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
pointer-events: none;
z-index: 0;
}
/* ============================================================================
CONTAINER
============================================================================ */
.container {
background: var(--white);
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
max-width: 480px;
width: 100%;
overflow: hidden;
position: relative;
z-index: 1;
animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
/* ============================================================================
HEADER
============================================================================ */
.header {
padding: 40px 30px;
text-align: center;
color: var(--white);
position: relative;
overflow: hidden;
}
.header::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.1); opacity: 0.8; }
}
.header.success { background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%); }
.header.warning { background: linear-gradient(135deg, var(--warning) 0%, var(--warning-light) 100%); }
.header.danger { background: linear-gradient(135deg, var(--danger) 0%, var(--danger-light) 100%); }
.header.info { background: linear-gradient(135deg, var(--info) 0%, var(--info-light) 100%); }
.status-icon {
width: 88px;
height: 88px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
font-size: 42px;
position: relative;
z-index: 1;
border: 2px solid rgba(255, 255, 255, 0.3);
animation: scaleIn 0.4s ease-out 0.2s both;
}
@keyframes scaleIn {
from { opacity: 0; transform: scale(0.5); }
to { opacity: 1; transform: scale(1); }
}
.status-title {
font-size: 26px;
font-weight: 700;
margin-bottom: 8px;
position: relative;
z-index: 1;
letter-spacing: -0.5px;
}
.status-description {
font-size: 15px;
opacity: 0.9;
position: relative;
z-index: 1;
}
/* ============================================================================
CONTENT
============================================================================ */
.content {
padding: 32px;
}
/* ============================================================================
AMOUNT DISPLAY
============================================================================ */
.amount-display {
text-align: center;
padding: 28px;
background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
border-radius: 16px;
margin-bottom: 24px;
border: 1px solid var(--gray-200);
}
.amount-label {
font-size: 13px;
color: var(--gray-500);
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
}
.amount-value {
font-size: 42px;
font-weight: 800;
color: var(--gray-900);
letter-spacing: -1px;
line-height: 1;
}
.amount-currency {
font-size: 18px;
color: var(--gray-500);
font-weight: 500;
margin-left: 4px;
}
/* ============================================================================
INFO SECTIONS
============================================================================ */
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.info-group {
margin-bottom: 0;
}
.info-label {
font-size: 11px;
color: var(--gray-500);
text-transform: uppercase;
letter-spacing: 0.8px;
margin-bottom: 6px;
font-weight: 600;
}
.info-value {
font-size: 15px;
color: var(--gray-800);
font-weight: 600;
}
.ref-code {
font-family: 'SF Mono', 'Fira Code', monospace;
background: var(--gray-100);
padding: 4px 10px;
border-radius: 6px;
font-size: 13px;
border: 1px solid var(--gray-200);
display: inline-block;
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
margin: 24px 0;
}
/* ============================================================================
PAYMENT INFO (Checkout)
============================================================================ */
.payment-info {
background: var(--gray-50);
border-radius: 16px;
padding: 20px;
margin-bottom: 24px;
border: 1px solid var(--gray-200);
}
.payment-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 0;
border-bottom: 1px solid var(--gray-200);
}
.payment-row:last-child {
border-bottom: none;
padding-bottom: 0;
}
.payment-row:first-child {
padding-top: 0;
}
.payment-label {
color: var(--gray-500);
font-size: 14px;
font-weight: 500;
}
.payment-value {
font-weight: 600;
color: var(--gray-800);
font-size: 15px;
}
.payment-total {
font-size: 28px;
font-weight: 800;
color: var(--success);
letter-spacing: -0.5px;
}
/* ============================================================================
BUTTONS
============================================================================ */
.actions {
display: flex;
gap: 12px;
margin-top: 28px;
}
.btn {
flex: 1;
padding: 16px 24px;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
text-align: center;
cursor: pointer;
border: none;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--white);
box-shadow: 0 4px 14px rgba(15, 118, 110, 0.4);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(15, 118, 110, 0.5);
}
.btn-secondary {
background: var(--gray-100);
color: var(--gray-700);
border: 1px solid var(--gray-300);
}
.btn-secondary:hover {
background: var(--gray-200);
}
.btn-pay {
width: 100%;
padding: 18px 24px;
background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
color: var(--white);
border: none;
border-radius: 14px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 24px;
box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.btn-pay:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}
.btn-pay:disabled {
background: var(--gray-400);
cursor: not-allowed;
transform: none;
box-shadow: none;
}
/* ============================================================================
SECURE BADGE & FOOTER
============================================================================ */
.secure-badge {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 24px;
color: var(--gray-500);
font-size: 13px;
font-weight: 500;
}
.secure-badge svg {
width: 18px;
height: 18px;
color: var(--success);
}
.footer {
text-align: center;
padding: 20px 32px;
background: var(--gray-50);
border-top: 1px solid var(--gray-200);
}
.footer-logo {
font-size: 13px;
color: var(--gray-500);
}
.footer-logo strong {
color: var(--gray-700);
}
.epayco-logo {
text-align: center;
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid var(--gray-200);
}
.epayco-logo img {
height: 28px;
opacity: 0.6;
transition: opacity 0.2s ease;
}
/* ============================================================================
LOADING & ERRORS
============================================================================ */
.loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(8px);
z-index: 9999;
align-items: center;
justify-content: center;
flex-direction: column;
}
.loading-overlay.active {
display: flex;
}
.spinner {
width: 56px;
height: 56px;
border: 3px solid rgba(255, 255, 255, 0.1);
border-top-color: var(--success-light);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
.loading-text {
color: var(--white);
margin-top: 20px;
font-size: 16px;
font-weight: 500;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.error-message {
background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
border: 1px solid #fecaca;
color: var(--danger);
padding: 14px 18px;
border-radius: 12px;
margin-bottom: 20px;
display: none;
font-size: 14px;
font-weight: 500;
}
.error-message.show {
display: block;
animation: shake 0.4s ease;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.no-info {
text-align: center;
color: var(--gray-500);
padding: 32px 20px;
font-size: 15px;
line-height: 1.6;
}
.checkout-container {
max-width: 520px;
}
/* ============================================================================
REDIRECT BANNER
============================================================================ */
.redirect-banner {
text-align: center;
padding: 28px 20px;
margin-top: 24px;
background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
border-radius: 16px;
border: 1px solid #6ee7b7;
animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}
.redirect-icon-wrapper {
width: 56px;
height: 56px;
border-radius: 50%;
background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
animation: bounceIn 0.5s ease-out 0.3s both;
box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
@keyframes bounceIn {
0% { opacity: 0; transform: scale(0.3); }
50% { transform: scale(1.08); }
70% { transform: scale(0.95); }
100% { opacity: 1; transform: scale(1); }
}
.redirect-icon {
color: var(--white);
}
.redirect-title {
font-size: 18px;
font-weight: 700;
color: #065f46;
margin-bottom: 6px;
}
.redirect-desc {
font-size: 13px;
color: #047857;
margin-bottom: 20px;
line-height: 1.4;
}
.redirect-countdown {
display: flex;
align-items: baseline;
justify-content: center;
gap: 6px;
margin-bottom: 16px;
}
.countdown-number {
font-size: 48px;
font-weight: 800;
color: #065f46;
line-height: 1;
min-width: 40px;
text-align: center;
}
.countdown-label {
font-size: 14px;
font-weight: 500;
color: #047857;
}
.redirect-progress-track {
width: 100%;
height: 6px;
background: #d1fae5;
border-radius: 3px;
overflow: hidden;
margin-bottom: 20px;
}
.redirect-progress-bar {
height: 100%;
width: 100%;
background: linear-gradient(90deg, var(--success), var(--success-light));
border-radius: 3px;
transition: width 1s linear;
}
.btn-redirect {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 32px;
background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
color: var(--white);
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}
.btn-redirect:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
}
/* ============================================================================
RESPONSIVE
============================================================================ */
@media (max-width: 480px) {
body { padding: 12px; }
.container { border-radius: 20px; }
.header { padding: 32px 24px; }
.status-icon { width: 72px; height: 72px; font-size: 36px; }
.status-title { font-size: 22px; }
.content { padding: 24px; }
.info-grid { grid-template-columns: 1fr; gap: 12px; }
.actions { flex-direction: column; }
.amount-value { font-size: 36px; }
.payment-total { font-size: 24px; }
.redirect-banner { padding: 24px 16px; }
.countdown-number { font-size: 40px; }
}