@import url('../fonts/outfit.css');

:root {
    --primary: #8a2be2;
    --primary-dark: #6b21a8;
    --primary-light: #d8b4fe;
    --primary-gradient: linear-gradient(135deg, #8a2be2 0%, #a855f7 100%);
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --text-main: #0b1120;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(138, 43, 226, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(138, 43, 226, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 20px 25px -5px rgba(138, 43, 226, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background-image: url('../sinergia-asesores-industria-de-reuniones-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

.container.kiosk-mode {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}


.kiosk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(226, 232, 240, 0.4);
}

.kiosk-header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-small {
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: var(--transition-default);
}

.logo-small:hover {
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.15));
}

.subtitle {
    display: none;
}


.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-default);
    border: 1px solid rgba(226, 232, 240, 0.4);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-default);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.event-card:hover::before {
    opacity: 1;
}

.img-box {
    width: 100%;
    height: 220px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.img-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.event-card:hover .img-box::after {
    opacity: 1;
}

.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s;
}

.event-card:hover .img-box img {
    transform: scale(1.05);
}

.info-box {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}


#registro_container {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-back-fancy {
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

.btn-back-fancy:hover {
    background: white;
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(-4px);
    box-shadow: var(--shadow-sm);
}

.btn-back-fancy i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-back-fancy:hover i {
    transform: translateX(-2px);
}


.ticket-premium {
    display: flex;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 28px;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
    border-left: 6px solid transparent;
    border-image: var(--primary-gradient);
    border-image-slice: 1;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), inset 0 -2px 4px rgba(0, 0, 0, 0.02);
}

#img_preview_container img {
    width: 120px;
    height: 120px;
    border-radius: 99px;
    object-fit: contain;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 10px;
    transition: var(--transition-default);
}

#img_preview_container img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.ticket-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-info i {
    width: 24px;
    color: var(--primary);
    font-size: 1.1rem;
    text-align: center;
}


.kiosk-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.form-group label i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    transition: var(--transition-default);
    background: #fdfdfd;
    color: var(--text-main);
}

.form-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:hover {
    border-color: var(--border-hover);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

.form-group input[readonly] {
    background: #f1f5f9;
    color: var(--text-muted);
    cursor: not-allowed;
    border-color: var(--border);
}

.btn-confirm-premium {
    grid-column: span 2;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 99px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: var(--transition-default);
    margin-top: 20px;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-confirm-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-confirm-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-confirm-premium:hover::before {
    left: 100%;
}

.btn-confirm-premium i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-confirm-premium:hover i {
    transform: translateX(4px);
}


.result-card {
    background: var(--card-bg);
    padding: 60px 48px;
    border-radius: 40px;
    text-align: center;
    max-width: 600px;
    margin: 48px auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.result-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.result-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

#qrcode {
    background: white;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: fit-content;
    margin: 40px auto;
    box-shadow: var(--shadow-md);
    transition: var(--transition-default);
}

#qrcode:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

#res_cod {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px 40px;
    border-radius: 99px;
    color: var(--primary);
    letter-spacing: 3px;
    text-indent: 3px;
    /* Compensa el letter-spacing extra final */
    border: 2px dashed var(--border-hover);
    display: inline-block;
    font-weight: 600;
    text-align: center;
}

.btn-finish {
    background: var(--text-main);
    color: white;
    width: 100%;
    padding: 20px 32px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 40px;
    transition: var(--transition-default);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-finish:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}


.main-tabs-kiosk {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    background: rgba(241, 245, 249, 0.6);
    padding: 8px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.kiosk-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-default);
}

.kiosk-tab-btn i {
    font-size: 1.1rem;
}

.kiosk-tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.kiosk-tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-secondary);
}


.seguimiento-box {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.seguimiento-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.2));
}

.seguimiento-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 12px;
}

.seg-instruccion {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.seg-search-row {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.seg-search-row input {
    flex: 1;
    padding: 18px 28px;
    border-radius: 99px;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-default);
    background: #fdfdfd;
    font-weight: 500;
}

.seg-search-row input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
    background: white;
}

.seg-search-row button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 99px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-default);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seg-search-row button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.seg-loading {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 48px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.seg-loading i {
    color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.seg-not-found {
    padding: 60px 0;
}

.seg-not-found .seg-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.seg-not-found h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.seg-not-found p {
    color: var(--text-muted);
    font-size: 1.1rem;
}


.seg-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-align: left;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

.seg-event-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.seg-event-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.seg-content {
    padding: 36px;
}

.seg-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.seg-badge-pagado {
    background: var(--success-light);
    color: #065f46;
    border-color: #a7f3d0;
}

.seg-badge-pendiente {
    background: var(--warning-light);
    color: #92400e;
    border-color: #fcd34d;
}

.seg-event-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.seg-event-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seg-user-box {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 99px;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.seg-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.seg-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.seg-value:last-child {
    margin-bottom: 0;
}

.seg-folio {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: inline-block;
    font-weight: 600;
}

.seg-btn-pase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 28px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 99px;
    text-decoration: none;
    transition: var(--transition-default);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.seg-btn-pase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.seg-btn-pase:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.seg-btn-pase:hover::before {
    left: 100%;
}

.seg-btn-pase i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.seg-btn-pase:hover i {
    transform: translateX(4px);
}

.seg-pase-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 28px;
    background: #f8fafc;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 99px;
    border: 2px dashed #cbd5e1;
    cursor: not-allowed;
}


hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 48px 0;
}

.link-home {
    display: block;
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-default);
    padding: 16px;
}

.link-home:hover {
    color: var(--primary);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    .kiosk-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .kiosk-header h1 {
        font-size: 2rem;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kiosk-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .btn-confirm-premium {
        grid-column: span 1;
    }

    .ticket-premium {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    #registro_container {
        padding: 24px;
    }

    .form-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .result-card {
        padding: 40px 24px;
    }

    .result-card h3 {
        font-size: 2rem;
    }

    #res_cod {
        font-size: 1.2rem;
        padding: 16px 24px;
    }

    .seguimiento-box {
        padding: 40px 24px;
    }

    .seg-search-row {
        flex-direction: column;
    }

    .seg-search-row button {
        width: 100%;
    }

    .seg-content {
        padding: 24px;
    }

    .seg-event-title {
        font-size: 1.5rem;
    }

    .main-tabs-kiosk {
        flex-direction: column;
    }

    .kiosk-tab-btn {
        justify-content: flex-start;
    }
}


@media (hover: none) and (pointer: coarse) {
    .event-card:hover {
        transform: none;
    }

    .btn-confirm-premium:hover,
    .btn-back-fancy:hover,
    .seg-btn-pase:hover {
        transform: none;
    }

    input,
    button {
        font-size: 16px !important;
    }
}


@media print {

    .kiosk-header,
    .btn-back-fancy,
    .btn-confirm-premium,
    .btn-finish,
    .main-tabs-kiosk,
    .seg-search-row,
    .link-home {
        display: none !important;
    }

    .result-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    #qrcode {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Autocomplete Styles */
.form-group {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white !important;
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    margin-top: -2px;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
    color: var(--text-main);
    display: flex;
    align-items: start;
    gap: 10px;
    line-height: 1.4;
    text-align: left;
}

.autocomplete-item i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 3px;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f1f5f9;
    color: var(--primary);
}

/* Estilos para Botón de Pago Mercado Pago */
.btn-mp-pay {
    background: #009ee3;
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 158, 227, 0.4);
    width: 100%;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-mp-pay:hover {
    background: #008ad0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -8px rgba(0, 158, 227, 0.5);
    color: white;
}

.btn-mp-pay:active {
    transform: scale(0.98);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(15, 23, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
    }
}

/* =========================================
   DISEÑO PREMIUM - RECONSTRUIDO
   ========================================= */

.form-section-header {
    margin-top: 35px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    grid-column: span 2;
}

.section-number {
    background: #0b1120;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
    flex-shrink: 0;
}

.form-section-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1120;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #e2e8f0, transparent);
}

.premium-select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 20px;
    appearance: none;
    color: #0b1120;
    cursor: pointer;
}

.premium-select:focus {
    outline: none;
    border-color: #0b1120;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

.payment-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    grid-column: span 2;
    margin-top: 10px;
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-icon-box {
    background: #8a2be2;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.payment-title-box h4 {
    margin: 0;
    color: #0b1120;
    font-size: 1.2rem;
    font-weight: 800;
}

.btn-mp-pay-premium {
    width: 100%;
    justify-content: center;
    background: #009ee3;
    color: white;
    padding: 20px;
    border-radius: 99px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    box-shadow: 0 12px 24px rgba(0, 158, 227, 0.25);
    transition: all 0.3s ease;
}

.btn-mp-pay-premium:hover {
    background: #008cd1 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 158, 227, 0.35);
    color: white !important;
}

.payment-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .form-section-header,
    .payment-card-premium {
        grid-column: span 1;
    }
}

/* RESET Y FORZADO DE SELECTORES PREMIUM */
select.premium-select,
.form-group select {
    width: 100% !important;
    height: 58px !important;
    padding: 0 20px !important;
    border-radius: 16px !important;
    border: 2px solid #e2e8f0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    color: #0b1120 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 58px !important;
}

select.premium-select:hover,
.form-group select:hover {
    border-color: #cbd5e1 !important;
    background-color: #ffffff !important;
}

select.premium-select:focus,
.form-group select:focus {
    outline: none !important;
    border-color: #0b1120 !important;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1) !important;
}

/* Arreglo para que el texto no se pegue arriba */
select.premium-select option {
    padding: 10px !important;
    background: white !important;
    color: #0b1120 !important;
}


/* =========================================
   TABS PREMIUM (SEGMENTED CONTROL)
   ========================================= */
.main-tabs-kiosk {
    display: inline-flex !important;
    background: #e2e8f0 !important;
    padding: 6px !important;
    border-radius: 99px !important;
    margin: 0 auto 40px auto !important;
    position: relative !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
    width: auto !important;
    min-width: 400px !important;
    border: none !important;
    flex-direction: row !important;
}

.kiosk-tab-btn {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 30px !important;
    border: none !important;
    background: transparent !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #64748b !important;
    border-radius: 99px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: none !important;
}

.kiosk-tab-btn i {
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.kiosk-tab-btn.active {
    background: #ffffff !important;
    color: #0b1120 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.kiosk-tab-btn:hover:not(.active) {
    color: #334155 !important;
    background: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 768px) {
    .main-tabs-kiosk {
        width: 100% !important;
        min-width: 100% !important;
        flex-direction: row !important;
    }

    .kiosk-tab-btn {
        font-size: 0.95rem !important;
        padding: 12px 10px !important;
    }
}


/* =========================================
   TABS CORPORATIVAS (UNDERLINE STYLE)
   Reemplaza el diseño de "pastilla"
   ========================================= */
.main-tabs-kiosk {
    display: flex !important;
    justify-content: center !important;
    gap: 50px !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border-bottom: 2px solid #e2e8f0 !important;
    margin: 0 auto 40px auto !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 600px !important;
}

.kiosk-tab-btn {
    flex: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 10px 16px 10px !important;
    border: none !important;
    background: transparent !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    box-shadow: none !important;
    margin-bottom: -2px !important;
    /* Solapa el borde inferior del contenedor */
    border-bottom: 3px solid transparent !important;
}

.kiosk-tab-btn i {
    font-size: 1.1rem !important;
    color: inherit !important;
}

.kiosk-tab-btn.active {
    background: transparent !important;
    color: #0b1120 !important;
    /* Texto negro/grafito corporativo */
    border-bottom: 3px solid #0b1120 !important;
    /* Subrayado fuerte */
    box-shadow: none !important;
}

.kiosk-tab-btn:hover:not(.active) {
    color: #0b1120 !important;
    background: transparent !important;
    border-bottom: 3px solid #cbd5e1 !important;
    /* Subrayado sutil al pasar el mouse */
}

@media (max-width: 768px) {
    .main-tabs-kiosk {
        gap: 20px !important;
        width: 100% !important;
    }

    .kiosk-tab-btn {
        font-size: 1rem !important;
        padding: 0 5px 12px 5px !important;
    }
}


/* =========================================
   DARK MODE - THEMA SINERGIA WEB
   ========================================= */
body {
    background-color: #0b1120 !important;
    background-image: radial-gradient(circle at top right, rgba(138, 43, 226, 0.15), transparent 500px),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.1), transparent 400px) !important;
    color: #ffffff !important;
}

.kiosk-mode .kiosk-header h1 {
    color: #ffffff !important;
}

/* Contenedores y Tarjetas Translúcidas */
.event-card,
.result-card,
.seguimiento-box,
.ticket-premium,
#registro_container {
    background: rgba(30, 41, 59, 0.65) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

/* Textos Generales a Claro */
.event-card .info-box h3,
.event-card .info-box p,
.form-section-header h4,
.form-group label,
.meta-info span,
.ticket-info h3 {
    color: #f8fafc !important;
}

/* Inputs y Selectores Estilo Oscuro */
.form-group input,
.form-group select,
.premium-select,
select.premium-select {
    background-color: rgba(15, 23, 42, 0.7) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.form-group input:focus,
.form-group select:focus,
.premium-select:focus {
    border-color: #8a2be2 !important;
    background-color: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.25) !important;
}

.form-group input::placeholder {
    color: #64748b !important;
}

/* Arreglo Select Options para modo oscuro */
select.premium-select option {
    background: #0f172a !important;
    color: #ffffff !important;
}

/* Líneas Divisorias sutiles */
.section-line {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent) !important;
}

/* Tabs (Segmented/Underline) adaptadas al fondo oscuro */
.kiosk-tab-btn {
    color: #94a3b8 !important;
}

.kiosk-tab-btn.active {
    color: #ffffff !important;
    border-bottom: 3px solid #8a2be2 !important;
}

.kiosk-tab-btn:hover:not(.active) {
    color: #e2e8f0 !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2) !important;
}

.main-tabs-kiosk {
    border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
}

/* Tarjeta de Pago Premium en Dark Mode */
.payment-card-premium {
    background: rgba(15, 23, 42, 0.5) !important;
    border: 1px solid rgba(138, 43, 226, 0.3) !important;
}

.payment-title-box h4 {
    color: #ffffff !important;
}

.payment-title-box p,
.payment-card-footer {
    color: #cbd5e1 !important;
}

/* Resultados Autocompletado Oscuro */
.autocomplete-results {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.autocomplete-item {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

.autocomplete-item:hover {
    background: rgba(138, 43, 226, 0.2) !important;
    color: #ffffff !important;
}

/* =========================================
   FIX: EVITAR ESTIRAMIENTO EN PANTALLAS GRANDES
   ========================================= */
#registro_container {
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* También limitamos el ancho de las cajas de resultados para que sean simétricas */
.result-card,
.seguimiento-box {
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* =========================================
   FIX: EVITAR ESTIRAMIENTO EN PANTALLAS GRANDES (V2)
   Dejar el modal amplio, pero contener los elementos internos
   ========================================= */
/* Revertir el tamaño del contenedor principal (modal) */
#registro_container,
.result-card,
.seguimiento-box {
    max-width: none !important;
}

/* Centrar y limitar el tamaño de los inputs (cajas) */
.kiosk-form {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Centrar y evitar que la tarjeta de pago se estire */
.payment-card-premium {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

/* Evitar que los botones se estiren al 100% de la pantalla */
.btn-confirm-premium,
.btn-mp-pay-premium,
.seg-btn-pase {
    max-width: 450px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

/* =========================================
   MODAL DE SEGUIMIENTO Y BOTÓN FLOTANTE
   ========================================= */
.btn-floating-track {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8a2be2;
    color: white;
    padding: 16px 24px;
    border-radius: 99px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 290px;
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-floating-track:hover {
    background: #6b21a8;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.5);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInModal 0.3s forwards;
}

@keyframes fadeInModal {
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    animation: slideUpModal 0.3s forwards;
}

@keyframes slideUpModal {
    to {
        transform: translateY(0);
    }
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-modal:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}


/* =========================================
   LIGHT GLASSMORPHISM - PREDOMINANCIA BLANCA/AZUL CLARO
   ========================================= */
body {
    /* Fondo "casi blanco" con tintes muy sutiles de azul moderno y morado */
    background-color: #f8fafc !important;
    background-image:
        radial-gradient(circle at top right, rgba(138, 43, 226, 0.08), transparent 600px),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.08), transparent 600px) !important;
    color: #0f172a !important;
}

.kiosk-mode .kiosk-header h1 {
    color: #0f172a !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Contenedores y Tarjetas Translúcidas Blancas (Glassmorphism) */
.event-card,
.result-card,
.seguimiento-box,
.ticket-premium,
#registro_container,
.modal-content {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.02) !important;
}

/* Textos Generales a Oscuro para máxima lectura */
.event-card .info-box h3,
.form-section-header h4,
.form-group label,
.ticket-info h3 {
    color: #0f172a !important;
}

.event-card .info-box p,
.meta-info span,
.payment-title-box p,
.payment-card-footer {
    color: #475569 !important;
}

/* Inputs y Selectores Estilo Claro Moderno */
.form-group input,
.form-group select,
.premium-select,
select.premium-select {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #0f172a !important;
    border: 1px solid rgba(37, 99, 235, 0.15) !important;
    /* Borde azul muy tenue */
}

.form-group input:focus,
.form-group select:focus,
.premium-select:focus {
    border-color: #8a2be2 !important;
    /* El morado sobresale */
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.15) !important;
}

.form-group input::placeholder {
    color: #94a3b8 !important;
}

/* Arreglo Select Options para modo claro */
select.premium-select option {
    background: #ffffff !important;
    color: #0f172a !important;
}

/* Líneas Divisorias sutiles */
.section-line {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.15), transparent) !important;
}

/* Tarjeta de Pago Premium en Light Mode */
.payment-card-premium {
    background: rgba(248, 250, 252, 0.8) !important;
    border: 1px solid rgba(138, 43, 226, 0.2) !important;
}

.payment-title-box h4 {
    color: #0f172a !important;
}

/* Modal Overlay */
.modal-overlay {
    background: rgba(15, 23, 42, 0.4) !important;
}

/* Resultados Autocompletado Claro */
.autocomplete-results {
    background: #ffffff !important;
    border-color: rgba(37, 99, 235, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.autocomplete-item {
    color: #0f172a !important;
    border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

.autocomplete-item:hover {
    background: rgba(138, 43, 226, 0.1) !important;
    color: #8a2be2 !important;
}

/* =========================================
   DISEÑO PREMIUM: BLOQUE AZUL OSCURO SUPERIOR + CRISTAL BLANCO
   ========================================= */
body {
    background-color: #f8fafc !important;
    position: relative !important;
    z-index: 0 !important;
    background-image: none !important;
    /* Quitamos los gradientes anteriores */
}

/* Creamos el bloque azul marino en la parte superior */
body::before {
    content: "" !important;
    position: fixed !important;
    /* Fixed para que siempre esté arriba aunque bajes */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 320px !important;
    background: #0b1120 !important;
    /* El Dark Navy de tu web */
    z-index: -1 !important;
    border-bottom: 3px solid #8a2be2 !important;
    /* Acento morado conectando */
}

/* El texto de la cabecera debe ser blanco porque ahora está sobre azul oscuro */
.kiosk-mode .kiosk-header h1 {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* El logo pequeño en la cabecera (si es oscuro, sugeriría cambiarlo por la versión blanca, pero por ahora lo dejamos) */
.kiosk-mode .kiosk-header img {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 10px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(5px) !important;
}

/* Mantenemos las tarjetas de cristal blanco */
.event-card,
.result-card,
.seguimiento-box,
.ticket-premium,
#registro_container,
.modal-content {
    background: rgba(255, 255, 255, 0.95) !important;
    /* Un poco menos transparente para que no se mezcle mal con la línea divisoria */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 20px 40px -15px rgba(11, 17, 32, 0.15) !important;
    /* Sombra más pronunciada para que "flote" */
}

/* =========================================
   FIX: ICONOS MÁS SUTILES Y CORPORATIVOS
   ========================================= */
/* Quitar el morado brillante de todos los iconos junto a textos */
.form-group label i,
.meta-info span i,
.payment-card-header .payment-icon-box i {
    color: #94a3b8 !important;
    /* Gris Pizarra sutil (Slate 400) */
    margin-right: 8px !important;
    font-size: 0.95rem !important;
    /* Ligeramente más pequeños para no ser invasivos */
}

/* El icono grande del modal también más sutil */
.seguimiento-icon {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

/* Solo dejamos el morado en lugares estrictamente interactivos o el bloque de pago principal */
.btn-confirm-premium i,
.btn-mp-pay-premium i,
.btn-floating-track i {
    color: inherit !important;
}

/* =========================================
   FIX: ELIMINAR MARCA DE AGUA DEL FONDO
   ========================================= */
body::after {
    display: none !important;
    background-image: none !important;
}
/* =========================================
   RESTAURAR MARCA DE AGUA (WATERMARK) CORREGIDA
   ========================================= */
body::after {
    display: block !important;
    content: '' !important;
    position: fixed !important;
    top: 65% !important; /* Lo bajamos para que viva solo en la zona blanca */
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 45vw !important; /* Más pequeño para que no invada los bordes */
    height: 45vh !important;
    background-image: url('../sinergia-asesores-industria-de-reuniones-logo.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.03 !important; /* Opacidad súper baja para que sea puramente decorativo */
    z-index: -1 !important;
}

/* =========================================
   COMPROBANTE DE PAGO (FILE UPLOAD)
   ========================================= */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    border: 2px dashed rgba(138, 43, 226, 0.4);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.file-upload-wrapper:hover {
    background: rgba(138, 43, 226, 0.05);
    border-color: #8a2be2;
}

.premium-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-weight: 500;
    z-index: 5;
    pointer-events: none;
}

.file-upload-text i {
    font-size: 2rem;
    color: #8a2be2;
}

.file-upload-wrapper.has-file {
    border: 2px solid #10b981;
    background: #ecfdf5;
}

.file-upload-wrapper.has-file .file-upload-text {
    color: #059669;
}

.file-upload-wrapper.has-file .file-upload-text i {
    color: #10b981;
}

/* =========================================
   PAGO CON MERCADO PAGO FLOTANTE (BOTÓN)
   ========================================= */
.btn-floating-pay {
    position: fixed;
    bottom: 90px; /* Arriba del botón de seguimiento */
    right: 30px;
    background: #009ee3; /* Color Mercado Pago */
    color: white;
    padding: 16px 24px;
    border-radius: 99px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 158, 227, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 290px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-floating-pay:hover {
    background: #0084bd;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 158, 227, 0.5);
    color: white;
}
