@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #FFFFFF;
    --bg-card: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    --primary: #22C55E; /* Neon/lime green matching the new logo */
    --primary-hover: #16A34A;
    --primary-glow: rgba(34, 197, 94, 0.2);
    --success: #22C55E;
    --success-glow: rgba(34, 197, 94, 0.15);
    --text-main: #000000;
    --text-muted: #6B7280;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    background-color: #FFFFFF;
    height: 100%;
}

body {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    background: #FFFFFF;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px 5px var(--primary-glow); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 var(--primary-glow); }
}

@keyframes pulse2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.fade-in-element {
    animation: fadeIn 0.4s var(--transition) forwards;
}

/* Welcome Page */
.welcome {
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
}

.logo-circle-container {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin-top: 4vh;
    margin-bottom: 24px;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
    animation: float 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #FFFFFF;
}

.logo-circle {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.welcome h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000000;
    letter-spacing: -0.5px;
}

.welcome p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Step Cards */
.welcome .card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 22px;
    padding: 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 20px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.welcome .card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.03), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

.welcome .card:hover:not(.disabled) {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: #FAFAFA;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
}

.card span {
    background: rgba(34, 197, 94, 0.1);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    border-radius: 50%;
    font-size: 16px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome .card h4 {
    font-size: 15px;
    font-weight: 750;
    color: #000000;
    margin-bottom: 4px;
}

.welcome .card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.welcome .card i {
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.welcome .card:hover:not(.disabled) i {
    transform: translateX(4px);
}

.card.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #F9FAFB;
    border-color: #E5E7EB;
}

.card.disabled span {
    border-color: var(--text-muted);
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
}

.card.pulse {
    animation: pulse2 2s infinite ease-in-out;
}

/* Headers */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.login header {
    border-radius: 0 0 24px 24px;
    background: #FFFFFF;
    flex-direction: column;
    gap: 12px;
    padding: 28px 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

header img {
    height: 70px;
    width: auto !important;
    object-fit: contain;
}

.login header img {
    height: 76px;
}

/* Step Progress indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 16px auto 0;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #E5E7EB;
    transform: translateY(-50%);
    z-index: 1;
}

.step-indicator .step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #D1D5DB;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.step-indicator .step-dot.active {
    border-color: #000000;
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.step-indicator .step-dot.completed {
    border-color: var(--success);
    color: #FFFFFF;
    background: var(--success);
}

/* Containers & Layout */
.loginContainer {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.4s ease-out;
    background: #FFFFFF;
}

.login h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.login p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

/* Inputs styling */
.login label {
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    color: #374151;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: block;
}

.login input, .pix input, .cupomWrapper input {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #D1D5DB;
    color: #000000;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.login input::placeholder, .pix input::placeholder, .cupomWrapper input::placeholder {
    color: #9CA3AF;
}

.login input:focus, .pix input:focus, .cupomWrapper input:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 10px var(--primary-glow);
}

.login input.ok, .pix input.ok, #cupom.ok {
    border-color: var(--success) !important;
    color: #065F46 !important;
    background: #ECFDF5 !important;
    box-shadow: 0 0 10px var(--success-glow) !important;
}

input.digitando {
    border-color: #000000;
}

/* Ticket/Confere Summary card */
.summary-ticket {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 18px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.summary-ticket-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-ticket-row label {
    font-size: 10px;
    font-weight: 750;
    color: var(--text-muted);
    text-transform: uppercase;
}

.summary-ticket-row div {
    font-size: 14.5px;
    font-weight: 600;
    color: #000000;
}

/* Buttons */
.btnContinue {
    width: 100%;
    border: none;
    margin-top: 10px;
    height: 52px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 750;
    color: #FFFFFF;
    background: #000000; /* Solid black buttons */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnContinue:hover:not(.disabled) {
    transform: translateY(-2px);
    background: var(--primary); /* turns neon green on hover! */
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.btnContinue:active:not(.disabled) {
    transform: translateY(0);
}

.btnContinue.disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

/* Steps revealing */
.d-none {
    display: none !important;
}

/* Pix Page Styles */
.pix .item {
    background: #FFFFFF;
    border: 1.5px solid #D1D5DB;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    width: 30.5%;
    border-radius: 14px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.pix .item i {
    font-size: 18px;
}

.pix .item.active {
    background: rgba(34, 197, 94, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.12);
}

/* Quiz Page Styles */
.quiz header {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.saldo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.saldo div {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 800;
    color: #047857;
    background: #ECFDF5;
    border-radius: 12px;
    border: 1px dashed var(--success);
    margin-top: 4px;
}

.saldo span {
    font-family: monospace;
    margin-left: 2px;
}

.container {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.4s ease-out;
    background: #FFFFFF;
}

.container h2 {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.container h3.loading {
    padding-top: 0px;
    margin-bottom: 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.container img#imagem {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 18px;
    border: 1.5px solid var(--primary);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
    background: #FFFFFF;
    padding: 10px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.cupomWrapper {
    width: 100%;
    margin-top: 10px;
    animation: fadeIn 0.4s var(--transition);
}

.cupomWrapper label {
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    color: #374151;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
    text-align: center;
}

/* Loader Screen (index.html) */
.parabens {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.parabens h2 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    text-align: center;
}

.btn-black {
    background: #000000;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite ease-in-out;
}

.btn-black:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

/* Custom modern spinner */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}

.lds-ring div:nth-child(1) { animation-delay: -0.45s; }
.lds-ring div:nth-child(2) { animation-delay: -0.30s; }
.lds-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes lds-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popups & Modals */
.pop {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.pop-out-foto {
    background: #FFFFFF;
    color: #000000;
    border: 1.5px solid #E5E7EB;
    padding: 0px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop-header {
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px;
    margin-bottom: 20px;
}

.pop-header h1 {
    margin: 0px;
    font-size: 20px;
    font-weight: 800;
    color: #000000;
}

.pop-out-foto p {
    font-size: 14px;
    color: var(--text-muted);
    padding: 0 24px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pop-out-foto h3 {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin: 16px 0;
}

.pop-out-foto .btn {
    margin: 20px auto;
    width: 88%;
    height: 48px;
    background: #000000;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2.5s infinite ease-in-out;
}

.pop-out-foto .btn:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

/* Locked Pix Modal */
.bloqueado {
    background: rgba(239, 68, 68, 0.05);
    border: 1.5px dashed #EF4444;
    padding: 16px;
    border-radius: 16px;
    margin: 12px 20px;
    text-align: center;
}

.bloqueado h4 {
    font-size: 12px;
    font-weight: 700;
    color: #EF4444;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.bloqueado h1 {
    font-size: 28px;
    font-weight: 800;
    color: #EF4444;
    margin: 0;
}

.btn-pop-out-foto {
    display: flex;
    background: #000000;
    width: 88%;
    height: 52px;
    margin: 20px auto;
    border-radius: 14px;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite ease-in-out;
}

.btn-pop-out-foto:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

/* Pix Page Layout override */
.welcome.pix {
    text-align: left;
    align-items: stretch;
    background: transparent;
}

.welcome.pix h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.welcome.pix p {
    margin-bottom: 24px;
}

.welcome.pix h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.welcome.pix .btn {
    height: 52px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    background: #F3F4F6;
    color: #9CA3AF !important;
    cursor: not-allowed;
    transition: var(--transition);
    pointer-events: none;
}

.welcome.pix .btn.active {
    background: #000000;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
}

.welcome.pix .btn.active:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

/* Responsiveness media query overrides */
@media (max-width: 480px) {
    body {
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
    
    .welcome {
        padding: 20px 16px;
    }
    
    .loginContainer {
        padding: 24px 16px;
    }
    
    .container {
        padding: 20px 16px;
    }
    
    .pix .item {
        padding: 12px 6px;
        font-size: 10px;
    }
    
    .pop-out-foto {
        width: 100%;
        margin-top: 0;
    }
}

/* Minimal product display and code below image styles */
.product-display {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
}
.product-display img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}
.product-info-box {
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}
.product-info-box h4 {
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}
.code-display-box {
    display: inline-block;
    background: #F3F4F6;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 6px 14px;
    font-size: 17px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 2px;
    font-family: monospace;
    margin-top: 2px;
    transition: var(--transition);
}
.code-display-box.verified {
    background: #ECFDF5;
    border-color: var(--success);
    color: #047857;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.15);
}

/* Progress bar styles */
.progress-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
    font-family: var(--font-family);
}
.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #F3F4F6;
    border-radius: 100px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Virtual Numeric Keypad styles */
.numeric-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 320px;
    margin: 16px auto 0;
}
.keypad-btn {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: all 0.12s ease;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.keypad-btn:active {
    background: #000000;
    color: var(--primary) !important;
    border-color: #000000;
    transform: scale(0.95);
}
.keypad-btn.action-btn {
    background: #F9FAFB;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4B5563;
}
.keypad-btn.action-btn:active {
    background: #000000;
    color: var(--primary) !important;
}

/* Input Error Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
input#cupom.error {
    border-color: var(--danger) !important;
    background: #FEF2F2 !important;
    animation: shake 0.3s ease;
    color: var(--danger) !important;
}

/* Custom styling for standard input typing */
input#cupom {
    width: 100%;
    height: 52px;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    letter-spacing: 2px;
    outline: none;
    transition: var(--transition);
    font-family: monospace;
}
input#cupom:focus {
    border-color: #000000;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Desktop Responsiveness Queries */
@media (min-width: 768px) {
    body {
        max-width: 600px !important;
        min-height: 100vh;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 auto;
    }
    
    header {
        max-width: 600px !important;
        margin: 0 auto;
        border: none !important;
        box-shadow: none !important;
    }

    /* Keep welcome page vertically stacked and centered */
    .welcome {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 20px !important;
    }
    
    .logo-circle-container {
        width: 170px !important;
        height: 170px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .welcome-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Keep quiz page vertically stacked and centered */
    .dashboard-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
    }
    
    .dashboard-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-right: none !important;
        padding-right: 0 !important;
    }
    
    .dashboard-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0 !important;
    }
    
    .product-display img {
        max-height: 220px !important;
    }
    
    /* Center Forms for Login and Outra on Desktop */
    .loginContainer {
        max-width: 500px;
        margin: 20px auto !important;
        border: none !important;
        box-shadow: none !important;
        padding: 20px !important;
    }
    
    body.welcome.pix main.container {
        max-width: 500px;
        margin: 20px auto !important;
        border: none !important;
        box-shadow: none !important;
        padding: 20px !important;
        background: #FFFFFF;
    }
    
    .pop-out-foto {
        max-width: 440px !important;
        border-radius: 20px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    }
}