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

@keyframes scaleIn {
    from {
    opacity: 0;
    transform: scale(0.9);
    }
    to {
    opacity: 1;
    transform: scale(1);
    }
}

* { font-family: 'Source Sans 3', sans-serif; }
.font-heading { font-family: 'DM Serif Display', serif; }

html { scroll-behavior: smooth; }

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(65, 146, 149, 0.15);
}

.btn-primary {
    background: #419295;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #357577;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(65, 146, 149, 0.3);
}

.filter-btn {
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    color: #514f52;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.filter-btn.active {
    background: #419295;
    color: white;
    border-color: #419295;
}

.filter-btn:hover {
    border-color: #419295;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #419295, #5aabae);
    border-radius: 2px;
}

.lote-item {
    aspect-ratio: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid transparent;
}

.lote-item:hover {
    transform: scale(1.08);
    border-color: rgba(0,0,0,0.1);
}

.sublote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4px;
}

.sublote-btn {
    aspect-ratio: 1;
    border-radius: 4px;
    font-size: 9px;
    opacity: 0.7;
    transition: all 0.2s ease;
    border: none;
    font-weight: 600;
    color: white;
}

.sublote-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.view-hidden { display: none !important; }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #419295;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #357577;
}