@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

@font-face {
    font-family: 'FonteCamiseta';
    src: url('fonts/fonte-camiseta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font-jersey {
    font-family: 'FonteCamiseta', 'Montserrat', sans-serif !important;
}

body {
    background-color: #fcf8f9;
    color: #1b1b1c;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Montserrat', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.jersey-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jersey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 107, 38, 0.15);
    border-color: #006b26 !important;
}

.jersey-card:active {
    transform: scale(0.98);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.custom-dashed {
    border: 2px dashed #006b26;
}

/* Transições de visualização das telas (SPA) */
.view-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.view-hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.view-active {
    display: block !important;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Efeito de pulse para o badge de entrega */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.animate-pulse-soft {
    animation: pulse-soft 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f0edee;
}
::-webkit-scrollbar-thumb {
    background: #bdcab9;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #006b26;
}
